We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36e1406 commit 788b7d4Copy full SHA for 788b7d4
llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
@@ -2234,8 +2234,8 @@ void VPReductionRecipe::execute(VPTransformState &State) {
2234
VectorType *VecTy = dyn_cast<VectorType>(NewVecOp->getType());
2235
Type *ElementTy = VecTy ? VecTy->getElementType() : NewVecOp->getType();
2236
2237
- Value *Start = llvm::getRecurrenceIdentity(Kind, ElementTy,
2238
- RdxDesc.getFastMathFlags());
+ Value *Start =
+ getRecurrenceIdentity(Kind, ElementTy, RdxDesc.getFastMathFlags());
2239
if (State.VF.isVector())
2240
Start = State.Builder.CreateVectorSplat(VecTy->getElementCount(), Start);
2241
0 commit comments