================
@@ -3605,7 +3605,8 @@ static void RenderSSPOptions(const Driver &D, const 
ToolChain &TC,
     StringRef Value = A->getValue();
     if (!EffectiveTriple.isX86() && !EffectiveTriple.isAArch64() &&
         !EffectiveTriple.isARM() && !EffectiveTriple.isThumb() &&
-        !EffectiveTriple.isRISCV())
+        !EffectiveTriple.isRISCV() && !EffectiveTriple.isPPC64() &&
+        !EffectiveTriple.isPPC32())
----------------
nathanchance wrote:

Any reason not to use `EffectiveTriple.isPPC()` instead of both 
`EffectiveTriple.isPPC32()` and `EffectiveTriple.isPPC64()`?

https://github.com/llvm/llvm-project/pull/110928
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to