mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
test: disable C ABI tests using i128 on s390x due to an LLVM crash
https://github.com/llvm/llvm-project/issues/168460
This commit is contained in:
parent
a8e77b7a05
commit
ae0cc8c065
1 changed files with 2 additions and 1 deletions
|
|
@ -12,7 +12,8 @@ const expect = std.testing.expect;
|
|||
const expectEqual = std.testing.expectEqual;
|
||||
const have_i128 = builtin.cpu.arch != .x86 and !builtin.cpu.arch.isArm() and
|
||||
!builtin.cpu.arch.isMIPS() and !builtin.cpu.arch.isPowerPC32() and builtin.cpu.arch != .riscv32 and
|
||||
builtin.cpu.arch != .hexagon;
|
||||
builtin.cpu.arch != .hexagon and
|
||||
builtin.cpu.arch != .s390x; // https://github.com/llvm/llvm-project/issues/168460
|
||||
|
||||
const have_f128 = builtin.cpu.arch.isWasm() or (builtin.cpu.arch.isX86() and !builtin.os.tag.isDarwin());
|
||||
const have_f80 = builtin.cpu.arch.isX86();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue