[llvm] 8249492 - llvm-reduce: Remove redundant casts to InvokeInst

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 19 00:32:36 PDT 2025


Author: Matt Arsenault
Date: 2025-03-19T14:32:28+07:00
New Revision: 8249492374b79793fe612da9d20aaa7e94832f91

URL: https://github.com/llvm/llvm-project/commit/8249492374b79793fe612da9d20aaa7e94832f91
DIFF: https://github.com/llvm/llvm-project/commit/8249492374b79793fe612da9d20aaa7e94832f91.diff

LOG: llvm-reduce: Remove redundant casts to InvokeInst

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 a04f35498d7aa..aff0b849e8b83 100644
--- a/llvm/tools/llvm-reduce/deltas/ReduceOperandsToArgs.cpp
+++ b/llvm/tools/llvm-reduce/deltas/ReduceOperandsToArgs.cpp
@@ -86,9 +86,8 @@ static void replaceFunctionCalls(Function *OldF, Function *NewF) {
     // Create the new function call.
     CallBase *NewCI;
     if (auto *II = dyn_cast<InvokeInst>(CI)) {
-      NewCI = InvokeInst::Create(NewF, cast<InvokeInst>(II)->getNormalDest(),
-                                 cast<InvokeInst>(II)->getUnwindDest(), Args,
-                                 OperandBundles, CI->getName());
+      NewCI = InvokeInst::Create(NewF, II->getNormalDest(), II->getUnwindDest(),
+                                 Args, OperandBundles, CI->getName());
     } else {
       assert(isa<CallInst>(CI));
       NewCI = CallInst::Create(NewF, Args, OperandBundles, CI->getName());


        


More information about the llvm-commits mailing list