Skip to content
/ zig Public
forked from ziglang/zig

Commit 1a0a851

Browse files
committed
llvm: Disable f128 on mips64(el).
llvm/llvm-project#96432
1 parent af7eb42 commit 1a0a851

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/codegen/llvm.zig

+2
Original file line numberDiff line numberDiff line change
@@ -11773,6 +11773,8 @@ fn backendSupportsF16(target: std.Target) bool {
1177311773
fn backendSupportsF128(target: std.Target) bool {
1177411774
return switch (target.cpu.arch) {
1177511775
.amdgcn,
11776+
.mips64,
11777+
.mips64el,
1177611778
.sparc,
1177711779
=> false,
1177811780
.aarch64,

0 commit comments

Comments
 (0)