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 e355fd8 commit 5f5692cCopy full SHA for 5f5692c
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