aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-11-17 16:37:30 +0000
committerDan Gohman <gohman@apple.com>2008-11-17 16:37:30 +0000
commit6560c000a1327b6a023badafed974f35fa1bdc3b (patch)
tree80902d9941a7b2aa07be7e02e981edd4a6db1053 /lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp
parent69e3bd10ecc36f7551b822a09d311fec08254cc0 (diff)
downloadexternal_llvm-6560c000a1327b6a023badafed974f35fa1bdc3b.zip
external_llvm-6560c000a1327b6a023badafed974f35fa1bdc3b.tar.gz
external_llvm-6560c000a1327b6a023badafed974f35fa1bdc3b.tar.bz2
Don't use the isPending flag to mean what the isAvailable flag means.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59445 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp b/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp
index fb01375..f22812f 100644
--- a/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp
+++ b/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp
@@ -164,7 +164,7 @@ void ScheduleDAGList::ListScheduleTopDown() {
// It is available if it has no predecessors.
if (SUnits[i].Preds.empty()) {
AvailableQueue->push(&SUnits[i]);
- SUnits[i].isAvailable = SUnits[i].isPending = true;
+ SUnits[i].isAvailable = true;
}
}