[llvm] 847cdd4 - [NFC][llvm-reduce] Fix an used variable warning in `ReduceOperandsToArgs.cpp`
Shilei Tian via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 29 08:44:09 PDT 2025
Author: Shilei Tian
Date: 2025-03-29T11:39:05-04:00
New Revision: 847cdd46e5433434661f4d7aa950dd5c5b28c063
URL: https://github.com/llvm/llvm-project/commit/847cdd46e5433434661f4d7aa950dd5c5b28c063
DIFF: https://github.com/llvm/llvm-project/commit/847cdd46e5433434661f4d7aa950dd5c5b28c063.diff
LOG: [NFC][llvm-reduce] Fix an used variable warning in `ReduceOperandsToArgs.cpp`
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..39302bd09fb49 100644
--- a/llvm/tools/llvm-reduce/deltas/ReduceOperandsToArgs.cpp
+++ b/llvm/tools/llvm-reduce/deltas/ReduceOperandsToArgs.cpp
@@ -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());
NewCI->copyMetadata(*CI);
More information about the llvm-commits
mailing list