Fix debug message.

llvm-svn: 111250
This commit is contained in:
Evan Cheng 2010-08-17 17:15:14 +00:00
parent 54a7be757b
commit a6848249ee
1 changed files with 1 additions and 1 deletions

View File

@ -449,7 +449,7 @@ MachineBasicBlock::SplitCriticalEdge(MachineBasicBlock *Succ, Pass *P) {
MachineBasicBlock *NMBB = MF->CreateMachineBasicBlock();
MF->insert(llvm::next(MachineFunction::iterator(this)), NMBB);
DEBUG(dbgs() << "PHIElimination splitting critical edge:"
DEBUG(dbgs() << "Splitting critical edge:"
" BB#" << getNumber()
<< " -- BB#" << NMBB->getNumber()
<< " -- BB#" << Succ->getNumber() << '\n');