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

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Sat Mar 29 06:01:19 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());
----------------
arsenm wrote:

Use FPOp instead of NewCI 

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


More information about the llvm-commits mailing list