Merge pull request #5783 from andzdroid/patch-1

Fix renamed function call in bit_not
This commit is contained in:
gingerBill
2025-10-12 09:37:38 +01:00
committed by GitHub

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