zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 5c128a899057aadbb175c5a22ec840ee2276b0d7 (tree)
parent f29bdd6746691d0a547140e435056a000419480f
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Thu,  5 Sep 2024 09:37:29 +0200

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

Closes #4951.

Diffstat:
Mtest/behavior/vector.zig | 17-----------------
1 file changed, 0 insertions(+), 17 deletions(-)

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