[llvm] 2213872 - llvm-reduce: Use isCallee helper (#133419)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 28 08:24:46 PDT 2025
Author: Matt Arsenault
Date: 2025-03-28T22:24:42+07:00
New Revision: 22138720020dd8dfd30dbd220c49d6585126d2f7
URL: https://github.com/llvm/llvm-project/commit/22138720020dd8dfd30dbd220c49d6585126d2f7
DIFF: https://github.com/llvm/llvm-project/commit/22138720020dd8dfd30dbd220c49d6585126d2f7.diff
LOG: llvm-reduce: Use isCallee helper (#133419)
Added:
Modified:
llvm/tools/llvm-reduce/deltas/ReduceOperandsSkip.cpp
Removed:
################################################################################
diff --git a/llvm/tools/llvm-reduce/deltas/ReduceOperandsSkip.cpp b/llvm/tools/llvm-reduce/deltas/ReduceOperandsSkip.cpp
index 1763feedcdbc3..2a9d40d8c3c59 100644
--- a/llvm/tools/llvm-reduce/deltas/ReduceOperandsSkip.cpp
+++ b/llvm/tools/llvm-reduce/deltas/ReduceOperandsSkip.cpp
@@ -52,7 +52,7 @@ static bool shouldReduceOperand(Use &Op) {
if (isa<GEPOperator>(Op.getUser()))
return false;
if (auto *CB = dyn_cast<CallBase>(Op.getUser())) {
- if (&CB->getCalledOperandUse() == &Op)
+ if (CB->isCallee(&Op))
return false;
}
return true;
More information about the llvm-commits
mailing list