mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +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
@ -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…
x
Reference in New Issue
Block a user