[llvm] IVDesc: strip redundant arg in getOpcode call (NFC) (PR #118476)

Ramkumar Ramachandra via llvm-commits llvm-commits at lists.llvm.org
Tue Dec 3 07:47:17 PST 2024


================
@@ -1063,7 +1063,7 @@ unsigned RecurrenceDescriptor::getOpcode(RecurKind Kind) {
 SmallVector<Instruction *, 4>
 RecurrenceDescriptor::getReductionOpChain(PHINode *Phi, Loop *L) const {
   SmallVector<Instruction *, 4> ReductionOperations;
-  unsigned RedOp = getOpcode(Kind);
+  unsigned RedOp = getOpcode();
----------------
artagnon wrote:

Not sure what you mean: Kind is a private member of the RecurrenceDescriptor class.

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


More information about the llvm-commits mailing list