Skip to content

Commit

Permalink
llvm: Disable f128 on mips64(el).
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrp authored and richerfu committed Oct 28, 2024
1 parent 2ee74ea commit 61e6009
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/codegen/llvm.zig
Original file line number Diff line number Diff line change
Expand Up @@ -11800,6 +11800,8 @@ fn backendSupportsF16(target: std.Target) bool {
fn backendSupportsF128(target: std.Target) bool {
return switch (target.cpu.arch) {
.amdgcn,
.mips64,
.mips64el,
.sparc,
=> false,
.aarch64,
Expand Down

0 comments on commit 61e6009

Please sign in to comment.