Browse Source

core/simd/x86: Correct a target feature name

Yawning Angel 1 year ago
parent
commit
9235e82451
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/simd/x86/pclmulqdq.odin

+ 1 - 1
core/simd/x86/pclmulqdq.odin

@@ -1,7 +1,7 @@
 //+build i386, amd64
 package simd_x86
 
-@(require_results, enable_target_feature="pclmulqdq")
+@(require_results, enable_target_feature="pclmul")
 _mm_clmulepi64_si128 :: #force_inline proc "c" (a, b: __m128i, $IMM8: u8) -> __m128i {
 	return pclmulqdq(a, b, u8(IMM8))
 }