[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:58:49 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
    } else if (Feature == "+float128") {
```

https://github.com/llvm/llvm-project/pull/67298


More information about the cfe-commits mailing list