summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/ScheduleDAG.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-08-22 20:41:06 +0000
committerBill Wendling <isanbard@gmail.com>2009-08-22 20:41:06 +0000
commit214ac545abc4fda9be6b27ecb67e404e61cd7fba (patch)
tree728cc12cca67588e8dd664aad0cdf9f8809e627f /llvm/lib/CodeGen/ScheduleDAG.cpp
parentea2559a7be4c96e0eeb2e6a33e4711f84008ed3f (diff)
downloadbcm5719-llvm-214ac545abc4fda9be6b27ecb67e404e61cd7fba.tar.gz
bcm5719-llvm-214ac545abc4fda9be6b27ecb67e404e61cd7fba.zip
Convert DOUT to DEBUG(errs()...).
llvm-svn: 79760
Diffstat (limited to 'llvm/lib/CodeGen/ScheduleDAG.cpp')
-rw-r--r--llvm/lib/CodeGen/ScheduleDAG.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/ScheduleDAG.cpp b/llvm/lib/CodeGen/ScheduleDAG.cpp
index a7508b5042d..ff5c236e379 100644
--- a/llvm/lib/CodeGen/ScheduleDAG.cpp
+++ b/llvm/lib/CodeGen/ScheduleDAG.cpp
@@ -60,9 +60,11 @@ void ScheduleDAG::Run(MachineBasicBlock *bb,
Schedule();
- DOUT << "*** Final schedule ***\n";
- DEBUG(dumpSchedule());
- DOUT << "\n";
+ DEBUG({
+ errs() << "*** Final schedule ***\n";
+ dumpSchedule();
+ errs() << '\n';
+ });
}
/// addPred - This adds the specified edge as a pred of the current node if
OpenPOWER on IntegriCloud