aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2025-05-31 23:14:48 -0400
committermlugg <mlugg@mlugg.co.uk>2025-06-01 08:24:01 +0100
commit9edfccb9a7d23dbf02444023d042d5008a39462e (patch)
tree3eafb1c2bed9f2170d6861ca466dca9e6d74392a /lib
parentec579aa0f372b2054ad659aaacd190c1a986d7f2 (diff)
downloadzig-9edfccb9a7d23dbf02444023d042d5008a39462e.tar.gz
zig-9edfccb9a7d23dbf02444023d042d5008a39462e.zip
Legalize: implement scalarization of overflow intrinsics
Diffstat (limited to 'lib')
-rw-r--r--lib/std/simd.zig1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/std/simd.zig b/lib/std/simd.zig
index b2f8b7db5d..12bf84a9e8 100644
--- a/lib/std/simd.zig
+++ b/lib/std/simd.zig
@@ -455,7 +455,6 @@ pub fn prefixScan(comptime op: std.builtin.ReduceOp, comptime hop: isize, vec: a
}
test "vector prefix scan" {
- if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
if ((builtin.cpu.arch == .armeb or builtin.cpu.arch == .thumbeb) and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
if (builtin.cpu.arch == .aarch64_be and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21893
if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch == .hexagon) return error.SkipZigTest;