commit 91bcdbec34ae5f56293e7470fe66924d161cd5fc (tree)
parent eae06cf5cce43c32c73c659a9df376a09896b933
Author: Alex Rønne Petersen <alex@alexrp.com>
Date: Mon, 18 May 2026 21:17:52 +0200
behavior: re-enable `vector reduce operation` on sparc64
closes https://github.com/ziglang/zig/issues/23719
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/test/behavior/vector.zig b/test/behavior/vector.zig
@@ -749,7 +749,6 @@ test "vector reduce operation" {
if (builtin.zig_backend == .stage2_spirv) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_c and builtin.cpu.arch.isArm()) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
- if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch.isSPARC()) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23719
const S = struct {
fn testReduce(comptime op: std.builtin.ReduceOp, x: anytype, expected: anytype) !void {