[llvm-commits] [llvm] r53415 - /llvm/trunk/lib/CodeGen/StackSlotColoring.cpp

Dan Gohman gohman at apple.com
Thu Jul 10 12:49:33 PDT 2008


Author: djg
Date: Thu Jul 10 14:49:32 2008
New Revision: 53415

URL: http://llvm.org/viewvc/llvm-project?rev=53415&view=rev
Log:
Make stack slot coloring's debug output more consistent with
other passes.

Modified:
    llvm/trunk/lib/CodeGen/StackSlotColoring.cpp

Modified: llvm/trunk/lib/CodeGen/StackSlotColoring.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/StackSlotColoring.cpp?rev=53415&r1=53414&r2=53415&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/StackSlotColoring.cpp (original)
+++ llvm/trunk/lib/CodeGen/StackSlotColoring.cpp Thu Jul 10 14:49:32 2008
@@ -242,7 +242,7 @@
 }
 
 bool StackSlotColoring::runOnMachineFunction(MachineFunction &MF) {
-  DOUT << "******** Stack Slot Coloring ********\n";
+  DOUT << "********** Stack Slot Coloring **********\n";
 
   MFI = MF.getFrameInfo();
   LS = &getAnalysis<LiveStacks>();





More information about the llvm-commits mailing list