Skip to content

Commit a048f50

Browse files
committed
!fixup fix formatting
1 parent 1d28cac commit a048f50

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,8 @@ bool llvm::UnrollRuntimeLoopRemainder(
583583
bool UseEpilogRemainder, bool UnrollRemainder, bool ForgetAllSCEV,
584584
LoopInfo *LI, ScalarEvolution *SE, DominatorTree *DT, AssumptionCache *AC,
585585
const TargetTransformInfo *TTI, bool PreserveLCSSA,
586-
unsigned SCEVExpansionBudget, bool RuntimeUnrollMultiExit, Loop **ResultLoop) {
586+
unsigned SCEVExpansionBudget, bool RuntimeUnrollMultiExit,
587+
Loop **ResultLoop) {
587588
LLVM_DEBUG(dbgs() << "Trying runtime unrolling on Loop: \n");
588589
LLVM_DEBUG(L->dump());
589590
LLVM_DEBUG(UseEpilogRemainder ? dbgs() << "Using epilog remainder.\n"
@@ -632,8 +633,9 @@ bool llvm::UnrollRuntimeLoopRemainder(
632633
if (!PreserveLCSSA)
633634
return false;
634635

635-
if (!RuntimeUnrollMultiExit && !canProfitablyRuntimeUnrollMultiExitLoop(
636-
L, OtherExits, LatchExit, UseEpilogRemainder)) {
636+
if (!RuntimeUnrollMultiExit &&
637+
!canProfitablyRuntimeUnrollMultiExitLoop(L, OtherExits, LatchExit,
638+
UseEpilogRemainder)) {
637639
LLVM_DEBUG(
638640
dbgs()
639641
<< "Multiple exit/exiting blocks in loop and multi-exit unrolling not "

0 commit comments

Comments
 (0)