diff options
author | Chris Lattner <sabre@nondot.org> | 2006-03-10 07:42:02 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-03-10 07:42:02 +0000 |
commit | 2f5806c2b37a4e59cb12a6d49f0e3423c2082a64 (patch) | |
tree | 69adf13c97f30ac7ec37a7b3f3ed4fcd8fef10d7 /lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp | |
parent | 1e433c59e0e123743bc08ba9518fa3c9792dc419 (diff) |
Move some simple-sched-specific instance vars to the simple scheduler.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26690 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp b/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp index f9bb1983c9..845fbe7e0e 100644 --- a/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp +++ b/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp @@ -189,7 +189,7 @@ public: const TargetMachine &tm, bool isbottomup, SchedulingPriorityQueue *priorityqueue, HazardRecognizer *HR) - : ScheduleDAG(listSchedulingBURR, dag, bb, tm), + : ScheduleDAG(dag, bb, tm), CurrCycle(0), isBottomUp(isbottomup), PriorityQueue(priorityqueue), HazardRec(HR) { } |