test: Re-enable vector shift operators for all LLVM targets.

Closes #4951.
This commit is contained in:
Alex Rønne Petersen 2024-09-05 09:37:29 +02:00
parent f29bdd6746
commit 5c128a8990
No known key found for this signature in database

View File

@ -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();
}