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 | d743014980ac5af4c9aa03de4afe5088cc7537a9 (patch) | |
tree | fbb76e8429805535c515f5885fdedf88608f7d9a /lib/CodeGen/StackSlotColoring.cpp | |
parent | 7134382d9a2c5cf0c0b722d8f6074e3864050353 (diff) | |
download | external_llvm-d743014980ac5af4c9aa03de4afe5088cc7537a9.tar.gz external_llvm-d743014980ac5af4c9aa03de4afe5088cc7537a9.tar.bz2 external_llvm-d743014980ac5af4c9aa03de4afe5088cc7537a9.zip |
Adjust whitespace in debug messages to be more consistent
with other debug messages.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57543 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/StackSlotColoring.cpp')
-rw-r--r-- | lib/CodeGen/StackSlotColoring.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/StackSlotColoring.cpp b/lib/CodeGen/StackSlotColoring.cpp index fe04657e29..bc062835fb 100644 --- a/lib/CodeGen/StackSlotColoring.cpp +++ b/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); } |