diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-01-24 23:28:38 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-01-24 23:28:38 +0000 |
commit | 1ce6a36610f06a1fb4047ddde1e9bc2f071c0bfb (patch) | |
tree | 3eca51d8da305702049ac8f8c9780cdf7ce52b27 /lib/CodeGen | |
parent | 25dae8f4a30634c1f9cd483b13995ecf44fecec6 (diff) | |
download | external_llvm-1ce6a36610f06a1fb4047ddde1e9bc2f071c0bfb.zip external_llvm-1ce6a36610f06a1fb4047ddde1e9bc2f071c0bfb.tar.gz external_llvm-1ce6a36610f06a1fb4047ddde1e9bc2f071c0bfb.tar.bz2 |
Use the standard MachineFunction::print() after SlotIndexes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148878 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/SlotIndexes.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SlotIndexes.cpp b/lib/CodeGen/SlotIndexes.cpp index 6a7666e..c5bd3a3 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; |