Fix renamed function call in bit_not

xor was renamed to bit_xor
This commit is contained in:
andzdroid
2025-10-10 22:05:25 +01:00
committed by andzdroid
parent 236111864e
commit 77fa058d43

View File

@@ -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)))
}
/*