mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 12:19:53 +00:00
Use DEBUG macro for debug output.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78694 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1d96ccc69a
commit
7cd0118c36
@ -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
Block a user