Skip to content

Commit

Permalink
llvm: Disable f128 on powerpc*-aix.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrp authored and richerfu committed Oct 28, 2024
1 parent 61e6009 commit b6360d9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/codegen/llvm.zig
Original file line number Diff line number Diff line change
Expand Up @@ -11804,6 +11804,11 @@ fn backendSupportsF128(target: std.Target) bool {
.mips64el,
.sparc,
=> false,
.powerpc,
.powerpcle,
.powerpc64,
.powerpc64le,
=> target.os.tag != .aix,
.aarch64,
.aarch64_be,
=> std.Target.aarch64.featureSetHas(target.cpu.features, .fp_armv8),
Expand Down

0 comments on commit b6360d9

Please sign in to comment.