[llvm] 9451617 - [NFC] LLVM reduce: fix unused variable (#133584)

via llvm-commits llvm-commits at lists.llvm.org
Sat Mar 29 06:50:59 PDT 2025


Author: Tim Gymnich
Date: 2025-03-29T14:50:55+01:00
New Revision: 9451617d563d3b0f43d86b25fd1b6a6528d0afc2

URL: https://github.com/llvm/llvm-project/commit/9451617d563d3b0f43d86b25fd1b6a6528d0afc2
DIFF: https://github.com/llvm/llvm-project/commit/9451617d563d3b0f43d86b25fd1b6a6528d0afc2.diff

LOG: [NFC] LLVM reduce: fix unused variable (#133584)

Added: 
    

Modified: 
    llvm/tools/llvm-reduce/deltas/ReduceOperandsToArgs.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/tools/llvm-reduce/deltas/ReduceOperandsToArgs.cpp b/llvm/tools/llvm-reduce/deltas/ReduceOperandsToArgs.cpp
index 6b1958e24c932..85a9cac124c0e 100644
--- a/llvm/tools/llvm-reduce/deltas/ReduceOperandsToArgs.cpp
+++ b/llvm/tools/llvm-reduce/deltas/ReduceOperandsToArgs.cpp
@@ -109,7 +109,7 @@ static void replaceFunctionCalls(Function *OldF, Function *NewF) {
     NewCI->setAttributes(CI->getAttributes());
 
     if (auto *FPOp = dyn_cast<FPMathOperator>(NewCI))
-      NewCI->setFastMathFlags(CI->getFastMathFlags());
+      FPOp->setFastMathFlags(CI->getFastMathFlags());
 
     NewCI->copyMetadata(*CI);
 


        


More information about the llvm-commits mailing list