Convert DOUT to DEBUG(errs()...).

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79760 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2009-08-22 20:41:06 +00:00
parent cbac788324
commit 960bb85b21

View File

@ -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