Skip to content

Commit 788b7d4

Browse files
committed
Remove llvm::
1 parent 36e1406 commit 788b7d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2234,8 +2234,8 @@ void VPReductionRecipe::execute(VPTransformState &State) {
22342234
VectorType *VecTy = dyn_cast<VectorType>(NewVecOp->getType());
22352235
Type *ElementTy = VecTy ? VecTy->getElementType() : NewVecOp->getType();
22362236

2237-
Value *Start = llvm::getRecurrenceIdentity(Kind, ElementTy,
2238-
RdxDesc.getFastMathFlags());
2237+
Value *Start =
2238+
getRecurrenceIdentity(Kind, ElementTy, RdxDesc.getFastMathFlags());
22392239
if (State.VF.isVector())
22402240
Start = State.Builder.CreateVectorSplat(VecTy->getElementCount(), Start);
22412241

0 commit comments

Comments
 (0)