aboutsummaryrefslogtreecommitdiff
path: root/core/simd
diff options
context:
space:
mode:
authorandzdroid <andzdroid@users.noreply.github.com>2025-10-10 22:05:25 +0100
committerandzdroid <andy@whirlibulf.com>2025-10-10 22:22:53 +0100
commit77fa058d4309a54fb2463ef294c4c814ae3fd571 (patch)
tree99fd718b0ac54e527967078f27c9c3d5485e00c6 /core/simd
parent236111864ec8147acf73ce4db1ef3310205cac7a (diff)
Fix renamed function call in bit_not
xor was renamed to bit_xor
Diffstat (limited to 'core/simd')
-rw-r--r--core/simd/simd.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/simd/simd.odin b/core/simd/simd.odin
index bca661757..f065a3cec 100644
--- a/core/simd/simd.odin
+++ b/core/simd/simd.odin
@@ -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)))
}
/*