Skip to content
/ zig Public
forked from ziglang/zig

Commit

Permalink
llvm: Disable f128 on powerpc*-aix.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrp committed Aug 13, 2024
1 parent 2f101e2 commit 819fe51
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 @@ -11777,6 +11777,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 819fe51

Please sign in to comment.