mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-26 14:15:53 +00:00
More consistent labelling of basic blocks in debug output
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89470 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
837be07979
commit
6cd8103bea
@ -136,7 +136,8 @@ void LiveIntervals::printInstrs(raw_ostream &OS) const {
|
||||
|
||||
for (MachineFunction::iterator mbbi = mf_->begin(), mbbe = mf_->end();
|
||||
mbbi != mbbe; ++mbbi) {
|
||||
OS << mbbi->getName() << ":\n";
|
||||
OS << "BB#" << mbbi->getNumber()
|
||||
<< ":\t\t# derived from " << mbbi->getName() << "\n";
|
||||
for (MachineBasicBlock::iterator mii = mbbi->begin(),
|
||||
mie = mbbi->end(); mii != mie; ++mii) {
|
||||
OS << getInstructionIndex(mii) << '\t' << *mii;
|
||||
|
Loading…
Reference in New Issue
Block a user