mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-04 14:48:47 +00:00
change and_not to bit_and_not
This commit is contained in:
@@ -130,7 +130,7 @@ _mm_and_ps :: #force_inline proc "c" (a, b: __m128) -> __m128 {
|
|||||||
}
|
}
|
||||||
@(require_results, enable_target_feature="sse")
|
@(require_results, enable_target_feature="sse")
|
||||||
_mm_andnot_ps :: #force_inline proc "c" (a, b: __m128) -> __m128 {
|
_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")
|
@(require_results, enable_target_feature="sse")
|
||||||
_mm_or_ps :: #force_inline proc "c" (a, b: __m128) -> __m128 {
|
_mm_or_ps :: #force_inline proc "c" (a, b: __m128) -> __m128 {
|
||||||
|
|||||||
Reference in New Issue
Block a user