[llvm] [VPlan] Add support for in-loop AnyOf reductions (PR #131830)
Luke Lau via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 19 06:33:24 PDT 2025
================
@@ -1184,15 +1184,15 @@ RecurrenceDescriptor::getReductionOpChain(PHINode *Phi, Loop *L) const {
// more expensive than out-of-loop reductions, and need to be costed more
// carefully.
unsigned ExpectedUses = 1;
- if (RedOp == Instruction::ICmp || RedOp == Instruction::FCmp)
+ if (isMinMaxRecurrenceKind(getRecurrenceKind()))
----------------
lukel97 wrote:
Split off in #132025
https://github.com/llvm/llvm-project/pull/131830
More information about the llvm-commits
mailing list