diff options
| author | Yawning Angel <yawning@schwanenlied.me> | 2023-12-15 16:55:53 +0900 |
|---|---|---|
| committer | Yawning Angel <yawning@schwanenlied.me> | 2024-01-07 20:04:40 +0900 |
| commit | 9235e8245193fb891e46ee4a7daa3e101ff8032a (patch) | |
| tree | d307c45470781f2313c11b2dbef23fbb51e2c8d8 /core/simd | |
| parent | ecee0e2db2107db7e7ea3242a3431d00a9392887 (diff) | |
core/simd/x86: Correct a target feature name
Diffstat (limited to 'core/simd')
| -rw-r--r-- | core/simd/x86/pclmulqdq.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/simd/x86/pclmulqdq.odin b/core/simd/x86/pclmulqdq.odin index 692fb7ce1..31ba58fe6 100644 --- a/core/simd/x86/pclmulqdq.odin +++ b/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)) } |