================
@@ -152,48 +152,38 @@ void tools::PS4cpu::Linker::ConstructJob(Compilation &C, 
const JobAction &JA,
     CmdArgs.push_back(Output.getFilename());
   }
 
-  const bool UseLTO = D.isUsingLTO();
   const bool UseJMC =
       Args.hasFlag(options::OPT_fjmc, options::OPT_fno_jmc, false);
 
+  const bool UnifiedLTO = Args.hasFlag(options::OPT_funified_lto,
----------------
ormris wrote:

This variable is only used once in both functions. You could simplify and just 
test for the flag in the if expression. Also, it seems like you're testing for 
`-fno-unified-lto` here, rather than `-funified-lto` due to the default being 
`true`. You could shorten this a bit by using `hasArg` instead.

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

Reply via email to