Browse Source

change and_not to bit_and_not

jakubtomsu 1 year ago
parent
commit
a2e6fc5909
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/simd/x86/sse.odin

+ 1 - 1
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 {