diff options
author | Dan Gohman <gohman@apple.com> | 2008-10-15 02:57:38 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-10-15 02:57:38 +0000 |
commit | 4459c4250d41d7ca428b0363f1acb805a7e8f8f4 (patch) | |
tree | c90bce0f24a4dcddb884e9c5e76226a4b9162d66 /llvm/lib/CodeGen/StackSlotColoring.cpp | |
parent | 3b0f5e4d617b4a03e0117629e19ec83b65860a66 (diff) | |
download | bcm5719-llvm-4459c4250d41d7ca428b0363f1acb805a7e8f8f4.tar.gz bcm5719-llvm-4459c4250d41d7ca428b0363f1acb805a7e8f8f4.zip |
Adjust whitespace in debug messages to be more consistent
with other debug messages.
llvm-svn: 57543
Diffstat (limited to 'llvm/lib/CodeGen/StackSlotColoring.cpp')
-rw-r--r-- | llvm/lib/CodeGen/StackSlotColoring.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/StackSlotColoring.cpp b/llvm/lib/CodeGen/StackSlotColoring.cpp index fe04657e297..bc062835fb3 100644 --- a/llvm/lib/CodeGen/StackSlotColoring.cpp +++ b/llvm/lib/CodeGen/StackSlotColoring.cpp @@ -179,7 +179,7 @@ int StackSlotColoring::ColorSlot(LiveInterval *li) { // Record the assignment. Assignments[Color].push_back(li); int FI = li->getStackSlotIndex(); - DOUT << "Assigning fi #" << FI << " to fi #" << Color << "\n"; + DOUT << "Assigning fi#" << FI << " to fi#" << Color << "\n"; // Change size and alignment of the allocated slot. If there are multiple // objects sharing the same slot, then make sure the size and alignment @@ -235,7 +235,7 @@ bool StackSlotColoring::ColorSlots(MachineFunction &MF) { // Delete unused stack slots. while (NextColor != -1) { - DOUT << "Removing unused stack object fi #" << NextColor << "\n"; + DOUT << "Removing unused stack object fi#" << NextColor << "\n"; MFI->RemoveStackObject(NextColor); NextColor = AllColors.find_next(NextColor); } |