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 | 66ef9ad33f5f6234152454de40d1fb9ee8efe206 (patch) | |
| tree | a2cf19bb878c22419baa840b8887df8f202191b7 | |
| parent | 5f3bf63cac8d553dae0ad3f6816ba9f7d8d7ec32 (diff) | |
| download | bcm5719-llvm-66ef9ad33f5f6234152454de40d1fb9ee8efe206.tar.gz bcm5719-llvm-66ef9ad33f5f6234152454de40d1fb9ee8efe206.zip  | |
Use the standard MachineFunction::print() after SlotIndexes.
llvm-svn: 148878
| -rw-r--r-- | llvm/lib/CodeGen/SlotIndexes.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SlotIndexes.cpp b/llvm/lib/CodeGen/SlotIndexes.cpp index 6a7666e8e25..c5bd3a3cae6 100644 --- a/llvm/lib/CodeGen/SlotIndexes.cpp +++ b/llvm/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;  | 

