commit | 4195c05b0dd629d5f31a1511f7627ea6e36f2fb1 | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Fri Jul 11 22:36:22 2008 +0000 |
committer | Dan Gohman <gohman@apple.com> | Fri Jul 11 22:36:22 2008 +0000 |
tree | 298981e4a49102f4f401638b178891b65f2261e7 | |
parent | 5e29bafdd4026d91dfcc021dab82e21975b98911 [diff] [blame] |
Factor out debugging code into the common base class. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53480 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp b/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp index d33f3d2..b12e68e 100644 --- a/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp +++ b/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp
@@ -1136,6 +1136,11 @@ /// MachineBasicBlock *ScheduleDAG::Run() { Schedule(); + + DOUT << "*** Final schedule ***\n"; + DEBUG(dumpSchedule()); + DOUT << "\n"; + return BB; }