mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 07:08:48 +00:00
Fix renamed function call in bit_not
xor was renamed to bit_xor
This commit is contained in:
+1
-1
@@ -2690,7 +2690,7 @@ Example:
|
|||||||
+------+------+------+------+
|
+------+------+------+------+
|
||||||
*/
|
*/
|
||||||
bit_not :: #force_inline proc "contextless" (v: $T/#simd[$LANES]$E) -> T where intrinsics.type_is_integer(E) {
|
bit_not :: #force_inline proc "contextless" (v: $T/#simd[$LANES]$E) -> T where intrinsics.type_is_integer(E) {
|
||||||
return xor(v, T(~E(0)))
|
return bit_xor(v, T(~E(0)))
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
Reference in New Issue
Block a user