1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Make stack slot coloring's debug output more consistent with

other passes.

llvm-svn: 53415
This commit is contained in:
Dan Gohman 2008-07-10 19:49:32 +00:00
parent d7023b66ea
commit 1f42b96c7e

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>();