[llvm-commits] [llvm] r148878 - /llvm/trunk/lib/CodeGen/SlotIndexes.cpp
Jakob Stoklund Olesen
stoklund at 2pi.dk
Tue Jan 24 15:28:38 PST 2012
Author: stoklund
Date: Tue Jan 24 17:28:38 2012
New Revision: 148878
URL: http://llvm.org/viewvc/llvm-project?rev=148878&view=rev
Log:
Use the standard MachineFunction::print() after SlotIndexes.
Modified:
llvm/trunk/lib/CodeGen/SlotIndexes.cpp
Modified: llvm/trunk/lib/CodeGen/SlotIndexes.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SlotIndexes.cpp?rev=148878&r1=148877&r2=148878&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SlotIndexes.cpp (original)
+++ llvm/trunk/lib/CodeGen/SlotIndexes.cpp Tue Jan 24 17:28:38 2012
@@ -106,7 +106,7 @@
// Sort the Idx2MBBMap
std::sort(idx2MBBMap.begin(), idx2MBBMap.end(), Idx2MBBCompare());
- DEBUG(dump());
+ DEBUG(mf->print(dbgs(), this));
// And we're done!
return false;
More information about the llvm-commits
mailing list