Skip to content

Commit 8e9011b

Browse files
committed
[LV][NFC]Fix formatting
1 parent ab0e8d0 commit 8e9011b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1456,9 +1456,8 @@ bool VPlanTransforms::tryAddExplicitVectorLength(VPlan &Plan) {
14561456
EVLPhi->insertAfter(CanonicalIVPHI);
14571457
// TODO: Add support for MaxSafeDist for correct loop emission.
14581458
// Compute original TC - IV as the AVL (application vector length).
1459-
auto *AVL = new VPInstruction(
1460-
Instruction::Sub, {Plan.getTripCount(), EVLPhi},
1461-
DebugLoc(), "avl");
1459+
auto *AVL = new VPInstruction(Instruction::Sub, {Plan.getTripCount(), EVLPhi},
1460+
DebugLoc(), "avl");
14621461
AVL->insertBefore(*Header, Header->getFirstNonPhi());
14631462
auto *VPEVL =
14641463
new VPInstruction(VPInstruction::ExplicitVectorLength, AVL, DebugLoc());

0 commit comments

Comments
 (0)