[llvm] [VPlan] Remove dead AnyOf reduction case in VPReductionRecipe. NFCI (PR #130048)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 6 02:13:38 PST 2025


================
@@ -2232,12 +2234,8 @@ void VPReductionRecipe::execute(VPTransformState &State) {
     VectorType *VecTy = dyn_cast<VectorType>(NewVecOp->getType());
     Type *ElementTy = VecTy ? VecTy->getElementType() : NewVecOp->getType();
 
-    Value *Start;
-    if (RecurrenceDescriptor::isAnyOfRecurrenceKind(Kind))
-      Start = RdxDesc.getRecurrenceStartValue();
-    else
-      Start = llvm::getRecurrenceIdentity(Kind, ElementTy,
-                                          RdxDesc.getFastMathFlags());
+    Value *Start = llvm::getRecurrenceIdentity(Kind, ElementTy,
----------------
fhahn wrote:

while your touching this line, can you remove the unneeded `llvm::`?

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


More information about the llvm-commits mailing list