Commit 2f65c39715

Alex Rønne Petersen <alex@alexrp.com>
2024-11-03 07:57:56
std.simd: Disable `vector prefix scan` test on aarch64_be.
See: https://github.com/ziglang/zig/issues/21893
1 parent b72b812
Changed files (1)
lib
lib/std/simd.zig
@@ -462,6 +462,7 @@ 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 == .aarch64_be and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21893
 
     if (comptime builtin.cpu.arch.isMIPS()) {
         return error.SkipZigTest;