We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 888b269 commit d586fe2Copy full SHA for d586fe2
lib/SILOptimizer/Transforms/DeadCodeElimination.cpp
@@ -680,7 +680,8 @@ bool DCE::removeDead() {
680
}
681
LLVM_DEBUG(llvm::dbgs() << "Replacing branch: ");
682
LLVM_DEBUG(Inst->dump());
683
- LLVM_DEBUG(llvm::dbgs() << "with jump to: BB" << postDom->getDebugID());
+ LLVM_DEBUG(llvm::dbgs()
684
+ << "with jump to: BB" << postDom->getDebugID() << "\n");
685
686
replaceBranchWithJump(Inst, postDom);
687
Inst->eraseFromParent();
0 commit comments