mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 17:32:36 +00:00
Use DEBUG macro for debug output.
llvm-svn: 78694
This commit is contained in:
parent
be69fa08b6
commit
539e2b4d86
@ -826,17 +826,13 @@ void SchedulePostRATDList::ListScheduleTopDown() {
|
||||
MinDepth = PendingQueue[i]->getDepth();
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
{
|
||||
errs() << "\n*** Examining Available\n";
|
||||
LatencyPriorityQueue q = AvailableQueue;
|
||||
while (!q.empty()) {
|
||||
SUnit *su = q.pop();
|
||||
errs() << "Height " << su->getHeight() << ": ";
|
||||
su->dump(this);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
DEBUG(errs() << "\n*** Examining Available\n";
|
||||
LatencyPriorityQueue q = AvailableQueue;
|
||||
while (!q.empty()) {
|
||||
SUnit *su = q.pop();
|
||||
errs() << "Height " << su->getHeight() << ": ";
|
||||
su->dump(this);
|
||||
});
|
||||
|
||||
SUnit *FoundSUnit = 0;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user