aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2011-01-13 00:57:35 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2011-01-13 00:57:35 +0000
commit668c9e31df3e7c216c57559c69667273f7b0404d (patch)
tree7ffe708d5fe76bd94c4f43226f2a8ffd61fef5a8 /lib
parent8a8696db6b6f6e735bb9de630876af83946b45f9 (diff)
downloadexternal_llvm-668c9e31df3e7c216c57559c69667273f7b0404d.zip
external_llvm-668c9e31df3e7c216c57559c69667273f7b0404d.tar.gz
external_llvm-668c9e31df3e7c216c57559c69667273f7b0404d.tar.bz2
Add missing space in debug output
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123351 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/MachineBasicBlock.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/MachineBasicBlock.cpp b/lib/CodeGen/MachineBasicBlock.cpp
index 97aee99..813fad2 100644
--- a/lib/CodeGen/MachineBasicBlock.cpp
+++ b/lib/CodeGen/MachineBasicBlock.cpp
@@ -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.