1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

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

llvm-svn: 79760
This commit is contained in:
Bill Wendling 2009-08-22 20:41:06 +00:00
parent 4a1c36eac3
commit 8e64fefc68

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