aboutsummaryrefslogtreecommitdiff
path: root/test/behavior
diff options
context:
space:
mode:
authorAlex Rønne Petersen <alex@alexrp.com>2024-09-05 09:37:29 +0200
committerAlex Rønne Petersen <alex@alexrp.com>2024-09-07 02:47:57 +0200
commit5c128a899057aadbb175c5a22ec840ee2276b0d7 (patch)
tree3cb28f1eec59b575a8acd5e2c89f3f8244151efd /test/behavior
parentf29bdd6746691d0a547140e435056a000419480f (diff)
downloadzig-5c128a899057aadbb175c5a22ec840ee2276b0d7.tar.gz
zig-5c128a899057aadbb175c5a22ec840ee2276b0d7.zip
test: Re-enable `vector shift operators` for all LLVM targets.
Closes #4951.
Diffstat (limited to 'test/behavior')
-rw-r--r--test/behavior/vector.zig17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/behavior/vector.zig b/test/behavior/vector.zig
index cee9f168f1..76134255e2 100644
--- a/test/behavior/vector.zig
+++ b/test/behavior/vector.zig
@@ -743,23 +743,6 @@ test "vector shift operators" {
}
};
- switch (builtin.target.cpu.arch) {
- .aarch64_be,
- .armeb,
- .thumb,
- .thumbeb,
- .mips,
- .mips64,
- .mips64el,
- .sparc64,
- => {
- // LLVM miscompiles on this architecture
- // https://github.com/ziglang/zig/issues/4951
- return error.SkipZigTest;
- },
- else => {},
- }
-
try S.doTheTest();
try comptime S.doTheTest();
}