Bug fix: nextToTry was not being initialized in one case.

llvm-svn: 1974
This commit is contained in:
Vikram S. Adve 2002-03-24 03:46:15 +00:00
parent e2a0dfad64
commit 9db158f568
1 changed files with 5 additions and 3 deletions

View File

@ -89,6 +89,8 @@ SchedPriorities::initializeReadyHeap(const SchedGraph* graph)
candsAsHeap.makeHeap();
nextToTry = candsAsHeap.begin();
#ifdef TEST_HEAP_CONVERSION
cerr << "After heap conversion:\n";
copy(candsAsHeap.begin(), candsAsHeap.end(),
@ -107,9 +109,9 @@ SchedPriorities::insertReady(const SchedGraphNode* node)
if (SchedDebugLevel >= Sched_PrintSchedTrace)
{
cerr << " Cycle " << (long)getTime() << ": "
<< " Node " << node->getNodeId() << " is ready; "
<< " Delay = " << (long)getNodeDelayRef(node) << "; Instruction: \n";
cerr << " Node " << node->getNodeId() << " will be ready in Cycle "
<< earliestForNode[node->getNodeId()] << "; "
<< " Delay = " <<(long)getNodeDelayRef(node) << "; Instruction: \n";
cerr << " " << *node->getMachineInstr() << "\n";
}
}