From 77fa058d4309a54fb2463ef294c4c814ae3fd571 Mon Sep 17 00:00:00 2001 From: andzdroid Date: Fri, 10 Oct 2025 22:05:25 +0100 Subject: [PATCH] Fix renamed function call in bit_not xor was renamed to bit_xor --- core/simd/simd.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))) } /*