authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-11-03 07:57:56+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-11-04 08:29:42+01:00
log2f65c3971547cb81d832c78da4fc4738dde4d1a7
tree419d673309951d81003bc43f69f614951e1d33da
parentb72b81292f73cf0a46ab2a6ef31a8db2cd4400ac
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

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

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

1 files changed, 1 insertions(+), 0 deletions(-)

lib/std/simd.zig+1
...@@ -462,6 +462,7 @@ pub fn prefixScan(comptime op: std.builtin.ReduceOp, comptime hop: isize, vec: a...@@ -462,6 +462,7 @@ pub fn prefixScan(comptime op: std.builtin.ReduceOp, comptime hop: isize, vec: a
462462
463test "vector prefix scan" {463test "vector prefix scan" {
464 if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;464 if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
465 if (builtin.cpu.arch == .aarch64_be and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21893
465466
466 if (comptime builtin.cpu.arch.isMIPS()) {467 if (comptime builtin.cpu.arch.isMIPS()) {
467 return error.SkipZigTest;468 return error.SkipZigTest;