Indent to 2 spaces.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16187 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Alkis Evlogimenos 2004-09-05 18:39:20 +00:00
parent 1704168df8
commit a63828619f

View File

@ -96,8 +96,9 @@ void MachineBasicBlock::print(std::ostream &OS) const
OS << "Can't print out MachineBasicBlock because parent MachineFunction is null\n";
return;
}
const BasicBlock *LBB = getBasicBlock();
if(LBB)
if (LBB)
OS << "\n" << LBB->getName() << " (" << (const void*)this
<< ", LLVM BB @" << (const void*) LBB << "):\n";
for (const_iterator I = begin(); I != end(); ++I) {