diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2025-01-06 21:51:56 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-06 21:51:56 +0100 |
| commit | 0fb80b0633fc5ebc92776449cb4e76068b5845f5 (patch) | |
| tree | 3d72f6598837e534f7a306f3f94b70a6be8591d3 /lib/std/simd.zig | |
| parent | a7a5f3506b74651235ba7112ce38b7c3205d0527 (diff) | |
| parent | 03ac40d5709060168e10c9c3187ffb5a161e773b (diff) | |
| download | zig-0fb80b0633fc5ebc92776449cb4e76068b5845f5.tar.gz zig-0fb80b0633fc5ebc92776449cb4e76068b5845f5.zip | |
Merge pull request #22430 from alexrp/thumbeb
Some QEMU fixes + disable some tests for `thumbeb` in addition to `armeb`
Diffstat (limited to 'lib/std/simd.zig')
| -rw-r--r-- | lib/std/simd.zig | 2 |
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()) { |
