summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-11-15 00:24:23 +0000
committerDan Gohman <gohman@apple.com>2008-11-15 00:24:23 +0000
commit68294c06fea679be3eae92069c5f0fd0120efeee (patch)
treedb92bff417ac576f7d8ffa9c34f550fd99b19021 /llvm/lib/CodeGen
parentd2760c047359645050dcf00f9f774c9fb04b0d11 (diff)
downloadbcm5719-llvm-68294c06fea679be3eae92069c5f0fd0120efeee.tar.gz
bcm5719-llvm-68294c06fea679be3eae92069c5f0fd0120efeee.zip
Correct a comment.
llvm-svn: 59341
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp
index 168e6d5f29d..fb013752816 100644
--- a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp
@@ -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);
OpenPOWER on IntegriCloud