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:
parent
af9782e470
commit
6cdcc6287b
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user