Skip to content

Commit f635f95

Browse files
committed
clang-format
1 parent da07d12 commit f635f95

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

llvm/lib/Transforms/Utils/LoopUtils.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1343,8 +1343,7 @@ Value *llvm::createSimpleReduction(IRBuilderBase &Builder, Value *Src,
13431343
assert(VPReductionIntrinsic::isVPReduction(VPID) &&
13441344
"No VPIntrinsic for this reduction");
13451345
auto *EltTy = cast<VectorType>(Src->getType())->getElementType();
1346-
Value *Iden =
1347-
getRecurrenceIdentity(Kind, EltTy, Builder.getFastMathFlags());
1346+
Value *Iden = getRecurrenceIdentity(Kind, EltTy, Builder.getFastMathFlags());
13481347
Value *Ops[] = {Iden, Src, Mask, EVL};
13491348
return Builder.CreateIntrinsic(EltTy, VPID, Ops);
13501349
}

llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3081,9 +3081,8 @@ void VPWidenLoadEVLRecipe::execute(VPTransformState &State) {
30813081
Builder.CreateIntrinsic(DataTy, Intrinsic::vp_gather, {Addr, Mask, EVL},
30823082
nullptr, "wide.masked.gather");
30833083
} else {
3084-
NewLI =
3085-
Builder.CreateIntrinsic(DataTy, Intrinsic::vp_load, {Addr, Mask, EVL},
3086-
nullptr, "vp.op.load");
3084+
NewLI = Builder.CreateIntrinsic(DataTy, Intrinsic::vp_load,
3085+
{Addr, Mask, EVL}, nullptr, "vp.op.load");
30873086
}
30883087
NewLI->addParamAttr(
30893088
0, Attribute::getWithAlignment(NewLI->getContext(), Alignment));

0 commit comments

Comments
 (0)