mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-06 04:57:55 +00:00
Fix renamed function call in bit_not
xor was renamed to bit_xor
This commit is contained in:
@@ -2690,7 +2690,7 @@ Example:
|
||||
+------+------+------+------+
|
||||
*/
|
||||
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