Browse Source

Fix renamed function call in bit_not

xor was renamed to bit_xor
andzdroid 2 days ago
parent
commit
77fa058d43
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/simd/simd.odin

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