1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Add missing space in debug output

llvm-svn: 123351
This commit is contained in:
Jakob Stoklund Olesen 2011-01-13 00:57:35 +00:00
parent af9782e470
commit 6cdcc6287b

View File

@ -203,7 +203,7 @@ void MachineBasicBlock::print(raw_ostream &OS, SlotIndexes *Indexes) const {
if (Indexes) OS << '\t';
OS << " Live Ins:";
for (livein_iterator I = livein_begin(),E = livein_end(); I != E; ++I)
OS << PrintReg(*I, TRI);
OS << ' ' << PrintReg(*I, TRI);
OS << '\n';
}
// Print the preds of this block according to the CFG.