Skip to content

Commit 65d7ab9

Browse files
committed
Formatting
1 parent f1a3ed2 commit 65d7ab9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1039,8 +1039,8 @@ void VPHistogramRecipe::execute(VPTransformState &State) {
10391039
if (VPValue *VPMask = getMask())
10401040
Mask = State.get(VPMask);
10411041
else
1042-
Mask = Builder.CreateVectorSplat(
1043-
VTy->getElementCount(), ConstantInt::getTrue(Builder.getInt1Ty()));
1042+
Mask = Builder.CreateVectorSplat(VTy->getElementCount(),
1043+
ConstantInt::getTrue(Builder.getInt1Ty()));
10441044

10451045
// If this is a subtract, we want to invert the increment amount. We may
10461046
// add a separate intrinsic in future, but for now we'll try this.
@@ -1070,7 +1070,7 @@ InstructionCost VPHistogramRecipe::computeCost(ElementCount VF,
10701070
// Assume that a non-constant update value (or a constant != 1) requires
10711071
// a multiply, and add that into the cost.
10721072
InstructionCost MulCost =
1073-
Ctx.TTI.getArithmeticInstrCost(Instruction::Mul, VTy);
1073+
Ctx.TTI.getArithmeticInstrCost(Instruction::Mul, VTy);
10741074
if (IncAmt->isLiveIn()) {
10751075
ConstantInt *CI = dyn_cast<ConstantInt>(IncAmt->getLiveInIRValue());
10761076

0 commit comments

Comments
 (0)