zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 2f65c3971547cb81d832c78da4fc4738dde4d1a7 (tree)
parent b72b81292f73cf0a46ab2a6ef31a8db2cd4400ac
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Sun,  3 Nov 2024 07:57:56 +0100

std.simd: Disable `vector prefix scan` test on aarch64_be.

See: https://github.com/ziglang/zig/issues/21893

Diffstat:
Mlib/std/simd.zig | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/lib/std/simd.zig b/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;