forked from OSchip/llvm-project
parent
5d47e93532
commit
92492f2f8e
|
@ -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…
Reference in New Issue