diff options
| author | Dan Gohman <gohman@apple.com> | 2009-10-09 23:33:48 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2009-10-09 23:33:48 +0000 |
| commit | 04e1b1d338e24537ab7c42bd0a1f0bf544732080 (patch) | |
| tree | 00f73bde29ce6b87e8cf4baf13038e753dcf8d3c /lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp | |
| parent | d85c2fe674dcb1b5e8c3bfa740a8e396e1a43290 (diff) | |
| download | external_llvm-04e1b1d338e24537ab7c42bd0a1f0bf544732080.zip external_llvm-04e1b1d338e24537ab7c42bd0a1f0bf544732080.tar.gz external_llvm-04e1b1d338e24537ab7c42bd0a1f0bf544732080.tar.bz2 | |
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/ScheduleDAGSDNodes.cpp')
| -rw-r--r-- | lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp b/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp index 3e2101a..9ca6d22 100644 --- a/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp +++ b/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp @@ -230,7 +230,7 @@ void ScheduleDAGSDNodes::AddSchedEdges() { /// are input. This SUnit graph is similar to the SelectionDAG, but /// excludes nodes that aren't interesting to scheduling, and represents /// flagged together nodes with a single SUnit. -void ScheduleDAGSDNodes::BuildSchedGraph() { +void ScheduleDAGSDNodes::BuildSchedGraph(AliasAnalysis *AA) { // Populate the SUnits array. BuildSchedUnits(); // Compute all the scheduling dependencies between nodes. |
