From 5c128a899057aadbb175c5a22ec840ee2276b0d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Thu, 5 Sep 2024 09:37:29 +0200 Subject: [PATCH] test: Re-enable `vector shift operators` for all LLVM targets. Closes #4951. --- test/behavior/vector.zig | 17 ----------------- 1 file changed, 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(); }