[clang] [PowerPC] Disable float128 on AIX in Clang (PR #67298)
Kai Luo via cfe-commits
cfe-commits at lists.llvm.org
Wed Nov 15 22:55:20 PST 2023
================
@@ -52,7 +52,7 @@ bool PPCTargetInfo::handleTargetFeatures(std::vector<std::string> &Features,
HasDirectMove = true;
} else if (Feature == "+htm") {
HasHTM = true;
- } else if (Feature == "+float128") {
+ } else if (Feature == "+float128" && !getTriple().isOSAIX()) {
----------------
bzEq wrote:
```suggestion
HasFloat128 = !getTriple().isOSAIX();
```
https://github.com/llvm/llvm-project/pull/67298
More information about the cfe-commits
mailing list