Commit 5c128a8990

Alex Rønne Petersen <alex@alexrp.com>
2024-09-05 09:37:29
test: Re-enable `vector shift operators` for all LLVM targets.
Closes #4951.
1 parent f29bdd6
Changed files (1)
test
behavior
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();
 }