diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2022-12-27 20:47:51 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2022-12-27 20:54:27 -0700 |
| commit | 5ca1753ff175379c7847ae82243774c79a75879c (patch) | |
| tree | ed93715fc6010c918baf8973e846d076e532b755 /lib/std/simd.zig | |
| parent | 3f1cfcbea873263c480696288d8cacd288a9c919 (diff) | |
| download | zig-5ca1753ff175379c7847ae82243774c79a75879c.tar.gz zig-5ca1753ff175379c7847ae82243774c79a75879c.zip | |
Revert "aarch64: reenable tests that are no longer regressed"
This reverts commit 3370d58956ecc744a004dff47b0437473f0ef7da.
This commit was done with an LLVM build that did not have assertions
enabled. There are LLVM assertions being triggered due to this commit.
Reopens #10627
Reopens #12013
Reopens #12027
Diffstat (limited to 'lib/std/simd.zig')
| -rw-r--r-- | lib/std/simd.zig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/std/simd.zig b/lib/std/simd.zig index 2179cb496e..95de3cc11c 100644 --- a/lib/std/simd.zig +++ b/lib/std/simd.zig @@ -191,6 +191,10 @@ pub fn extract( } test "vector patterns" { + if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch == .aarch64) { + // https://github.com/ziglang/zig/issues/12012 + return error.SkipZigTest; + } const base = @Vector(4, u32){ 10, 20, 30, 40 }; const other_base = @Vector(4, u32){ 55, 66, 77, 88 }; |
