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
commitbf15ae2d5bc058fac01b0480433907481e47d7a9 (patch)
tree39fc549cc179067501294dc83649ac50f4c74044 /lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
parent9a184efddb63e9b0327cb6cfccb9130fbfe464c5 (diff)
downloadexternal_llvm-bf15ae2d5bc058fac01b0480433907481e47d7a9.tar.gz
external_llvm-bf15ae2d5bc058fac01b0480433907481e47d7a9.tar.bz2
external_llvm-bf15ae2d5bc058fac01b0480433907481e47d7a9.zip
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 7ed8bc8a55..fcc2b8af28 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";