From a2e6fc59093d4ef88d74ebe71fe7e1d070f65c57 Mon Sep 17 00:00:00 2001 From: jakubtomsu <66876057+jakubtomsu@users.noreply.github.com> Date: Sun, 22 Oct 2023 20:52:35 +0200 Subject: [PATCH] change and_not to bit_and_not --- core/simd/x86/sse.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/simd/x86/sse.odin b/core/simd/x86/sse.odin index 3efdeccba..980606b12 100644 --- a/core/simd/x86/sse.odin +++ b/core/simd/x86/sse.odin @@ -130,7 +130,7 @@ _mm_and_ps :: #force_inline proc "c" (a, b: __m128) -> __m128 { } @(require_results, enable_target_feature="sse") _mm_andnot_ps :: #force_inline proc "c" (a, b: __m128) -> __m128 { - return transmute(__m128)simd.and_not(transmute(__m128i)a, transmute(__m128i)b) + return transmute(__m128)simd.bit_and_not(transmute(__m128i)a, transmute(__m128i)b) } @(require_results, enable_target_feature="sse") _mm_or_ps :: #force_inline proc "c" (a, b: __m128) -> __m128 {