commit | 668c9e31df3e7c216c57559c69667273f7b0404d | [log] [tgz] |
---|---|---|
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | Thu Jan 13 00:57:35 2011 +0000 |
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | Thu Jan 13 00:57:35 2011 +0000 |
tree | 7ffe708d5fe76bd94c4f43226f2a8ffd61fef5a8 | |
parent | 8a8696db6b6f6e735bb9de630876af83946b45f9 [diff] [blame] |
Add missing space in debug output git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123351 91177308-0d34-0410-b5e6-96231b3b80d8
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 @@ 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.