From: Dan Gohman Date: Thu, 10 Jul 2008 19:49:32 +0000 (+0000) Subject: Make stack slot coloring's debug output more consistent with X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=fdeb4b3f1d5a17afdf9a9b3a27ea60bee5972ebd;p=oota-llvm.git 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 --- diff --git a/lib/CodeGen/StackSlotColoring.cpp b/lib/CodeGen/StackSlotColoring.cpp index c6ec9f5e6cf..6d0e2148c59 100644 --- a/lib/CodeGen/StackSlotColoring.cpp +++ b/lib/CodeGen/StackSlotColoring.cpp @@ -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();