mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-21 23:17:16 +00:00
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
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user