From: Jakob Stoklund Olesen Date: Tue, 24 Jan 2012 23:28:38 +0000 (+0000) Subject: Use the standard MachineFunction::print() after SlotIndexes. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=1ce6a36610f06a1fb4047ddde1e9bc2f071c0bfb;p=oota-llvm.git Use the standard MachineFunction::print() after SlotIndexes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148878 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SlotIndexes.cpp b/lib/CodeGen/SlotIndexes.cpp index 6a7666e8e25..c5bd3a3cae6 100644 --- a/lib/CodeGen/SlotIndexes.cpp +++ b/lib/CodeGen/SlotIndexes.cpp @@ -106,7 +106,7 @@ bool SlotIndexes::runOnMachineFunction(MachineFunction &fn) { // Sort the Idx2MBBMap std::sort(idx2MBBMap.begin(), idx2MBBMap.end(), Idx2MBBCompare()); - DEBUG(dump()); + DEBUG(mf->print(dbgs(), this)); // And we're done! return false;