Correct a comment.
authorDan Gohman <gohman@apple.com>
Sat, 15 Nov 2008 00:24:23 +0000 (00:24 +0000)
committerDan Gohman <gohman@apple.com>
Sat, 15 Nov 2008 00:24:23 +0000 (00:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59341 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp

index 168e6d5f29d5570fb933dacbd71e9ccf36d764f3..fb013752816b776c5861985fa021c426c38c98b0 100644 (file)
@@ -148,7 +148,7 @@ void ScheduleDAGList::ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle) {
   Sequence.push_back(SU);
   SU->Cycle = CurCycle;
   
-  // Bottom up: release successors.
+  // Top down: release successors.
   for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
        I != E; ++I)
     ReleaseSucc(I->Dep, I->isCtrl);