Skip to content

Commit 6c600d1

Browse files
committed
Fix 80-column violation.
1 parent 237d20d commit 6c600d1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/SILPasses/IPO/CapturePropagation.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,8 @@ SILFunction *CapturePropagation::specializeConstClosure(PartialApplyInst *PAI,
222222
// See if we already have a version of this function in the module. If so,
223223
// just return it.
224224
if (auto *NewF = OrigF->getModule().lookUpFunction(Name.str())) {
225-
DEBUG(llvm::dbgs() << " Found an already specialized version of the callee: ";
225+
DEBUG(llvm::dbgs()
226+
<< " Found an already specialized version of the callee: ";
226227
NewF->printName(llvm::dbgs()); llvm::dbgs() << "\n");
227228
return NewF;
228229
}

0 commit comments

Comments
 (0)