mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-26 13:10:34 +00:00
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:
parent
cbac788324
commit
960bb85b21
@ -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