mirror of
https://github.com/odin-lang/Odin.git
synced 2026-06-07 11:04:17 +00:00
Merge pull request #5783 from andzdroid/patch-1
Fix renamed function call in bit_not
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