Make stack slot coloring's debug output more consistent with

other passes.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53415 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2008-07-10 19:49:32 +00:00
parent bdb10fe0f6
commit fdeb4b3f1d

View File

@ -242,7 +242,7 @@ bool StackSlotColoring::ColorSlots(MachineFunction &MF) {
}
bool StackSlotColoring::runOnMachineFunction(MachineFunction &MF) {
DOUT << "******** Stack Slot Coloring ********\n";
DOUT << "********** Stack Slot Coloring **********\n";
MFI = MF.getFrameInfo();
LS = &getAnalysis<LiveStacks>();