mirror of
https://github.com/ziglang/zig.git
synced 2024-11-25 05:40:16 +00:00
std.simd: Disable vector prefix scan
test on aarch64_be.
See: https://github.com/ziglang/zig/issues/21893
This commit is contained in:
parent
b72b81292f
commit
2f65c39715
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user