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:
parent
4a1c36eac3
commit
8e64fefc68
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user