aboutsummaryrefslogtreecommitdiff
path: root/lib/std/simd.zig
diff options
context:
space:
mode:
authorAlex Rønne Petersen <alex@alexrp.com>2025-01-06 16:47:40 +0100
committerAlex Rønne Petersen <alex@alexrp.com>2025-01-06 16:47:40 +0100
commit03ac40d5709060168e10c9c3187ffb5a161e773b (patch)
tree9f7a4db33a7e56ceea0c8ed69bb91ca5484b2293 /lib/std/simd.zig
parentc1ae99efb30b1dcc86b3f41b419685a62413378e (diff)
downloadzig-03ac40d5709060168e10c9c3187ffb5a161e773b.tar.gz
zig-03ac40d5709060168e10c9c3187ffb5a161e773b.zip
std: Disable some tests affected by #22060 for thumbeb too.
Diffstat (limited to 'lib/std/simd.zig')
-rw-r--r--lib/std/simd.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/simd.zig b/lib/std/simd.zig
index 3413ad127f..e06a873f09 100644
--- a/lib/std/simd.zig
+++ b/lib/std/simd.zig
@@ -462,7 +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 == .armeb and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
+ if ((builtin.cpu.arch == .armeb or builtin.cpu.arch == .thumbeb) and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
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()) {