From 9235e8245193fb891e46ee4a7daa3e101ff8032a Mon Sep 17 00:00:00 2001 From: Yawning Angel Date: Fri, 15 Dec 2023 16:55:53 +0900 Subject: [PATCH] core/simd/x86: Correct a target feature name --- core/simd/x86/pclmulqdq.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) }