summaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-10-09 23:33:48 +0000
committerDan Gohman <gohman@apple.com>2009-10-09 23:33:48 +0000
commit98976e4dcd18adbbe676048c0069e67346eb4ade (patch)
tree00f73bde29ce6b87e8cf4baf13038e753dcf8d3c /lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp
parentcda49a0b29a362a932c1aeb2ccc4521966b7fc2b (diff)
downloadllvm-98976e4dcd18adbbe676048c0069e67346eb4ade.tar.gz
llvm-98976e4dcd18adbbe676048c0069e67346eb4ade.tar.bz2
llvm-98976e4dcd18adbbe676048c0069e67346eb4ade.tar.xz
The ScheduleDAG framework now requires an AliasAnalysis argument, though
it isn't needed in the ScheduleDAGSDNodes schedulers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83691 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp b/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp
index 7eac4d81bb..e0f93d85c7 100644
--- a/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp
+++ b/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp
@@ -117,7 +117,7 @@ void ScheduleDAGFast::Schedule() {
LiveRegCycles.resize(TRI->getNumRegs(), 0);
// Build the scheduling graph.
- BuildSchedGraph();
+ BuildSchedGraph(NULL);
DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
SUnits[su].dumpAll(this));