[llvm] IVDescriptors: unify RecurKinds IAnyOf and FAnyOf (PR #118393)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 3 03:43:36 PST 2024
================
@@ -2179,8 +2178,8 @@ void VPReductionEVLRecipe::execute(VPTransformState &State) {
if (RecurrenceDescriptor::isMinMaxRecurrenceKind(Kind))
NewRed = createMinMaxOp(Builder, Kind, NewRed, Prev);
else
- NewRed = Builder.CreateBinOp(
- (Instruction::BinaryOps)RdxDesc.getOpcode(Kind), NewRed, Prev);
+ NewRed = Builder.CreateBinOp((Instruction::BinaryOps)RdxDesc.getOpcode(),
----------------
fhahn wrote:
those look like unrelated updates that could be done separately as NFC first?
https://github.com/llvm/llvm-project/pull/118393
More information about the llvm-commits
mailing list