diff options
| author | andzdroid <andzdroid@users.noreply.github.com> | 2025-10-10 22:05:25 +0100 |
|---|---|---|
| committer | andzdroid <andy@whirlibulf.com> | 2025-10-10 22:22:53 +0100 |
| commit | 77fa058d4309a54fb2463ef294c4c814ae3fd571 (patch) | |
| tree | 99fd718b0ac54e527967078f27c9c3d5485e00c6 /core/simd | |
| parent | 236111864ec8147acf73ce4db1ef3310205cac7a (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.odin | 2 |
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))) } /* |