Skip to content

Commit 5f5692c

Browse files
committed
[Gardening] Separated debug output lines.
1 parent e355fd8 commit 5f5692c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/SILOptimizer/Transforms/DeadCodeElimination.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,8 @@ bool DCE::removeDead() {
680680
}
681681
LLVM_DEBUG(llvm::dbgs() << "Replacing branch: ");
682682
LLVM_DEBUG(Inst->dump());
683-
LLVM_DEBUG(llvm::dbgs() << "with jump to: BB" << postDom->getDebugID());
683+
LLVM_DEBUG(llvm::dbgs()
684+
<< "with jump to: BB" << postDom->getDebugID() << "\n");
684685

685686
replaceBranchWithJump(Inst, postDom);
686687
Inst->eraseFromParent();

0 commit comments

Comments
 (0)