[llvm] [NFC] LLVM reduce: remove unused variable (PR #133584)

Tim Gymnich via llvm-commits llvm-commits at lists.llvm.org
Sat Mar 29 07:00:48 PDT 2025


================
@@ -108,7 +108,7 @@ static void replaceFunctionCalls(Function *OldF, Function *NewF) {
     NewCI->setCallingConv(NewF->getCallingConv());
     NewCI->setAttributes(CI->getAttributes());
 
-    if (auto *FPOp = dyn_cast<FPMathOperator>(NewCI))
+    if (isa<FPMathOperator>(NewCI))
       NewCI->setFastMathFlags(CI->getFastMathFlags());
----------------
tgymnich wrote:

'setFastMathFlags' is a private member of 'llvm::FPMathOperator'

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


More information about the llvm-commits mailing list