aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2008-01-07 01:35:56 +0000
committerOwen Anderson <resistor@mac.com>2008-01-07 01:35:56 +0000
commit6425f8be7263e625c2d7484eb2fb8f6643824f49 (patch)
tree39fc549cc179067501294dc83649ac50f4c74044 /lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
parent43dbe05279b753aabda571d9c83eaeb36987001a (diff)
downloadexternal_llvm-6425f8be7263e625c2d7484eb2fb8f6643824f49.zip
external_llvm-6425f8be7263e625c2d7484eb2fb8f6643824f49.tar.gz
external_llvm-6425f8be7263e625c2d7484eb2fb8f6643824f49.tar.bz2
Update CodeGen for MRegisterInfo --> TargetInstrInfo changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45673 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp b/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
index 7ed8bc8..fcc2b8a 100644
--- a/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
+++ b/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
@@ -413,7 +413,7 @@ SUnit *ScheduleDAGRRList::CopyAndMoveSuccessors(SUnit *SU) {
if (TryUnfold) {
SmallVector<SDNode*, 4> NewNodes;
- if (!MRI->unfoldMemoryOperand(DAG, N, NewNodes))
+ if (!TII->unfoldMemoryOperand(DAG, N, NewNodes))
return NULL;
DOUT << "Unfolding SU # " << SU->NodeNum << "\n";