From fdeb4b3f1d5a17afdf9a9b3a27ea60bee5972ebd Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 10 Jul 2008 19:49:32 +0000 Subject: [PATCH] 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 --- lib/CodeGen/StackSlotColoring.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();