diff options
author | Evan Cheng <evan.cheng@apple.com> | 2006-12-01 21:52:58 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2006-12-01 21:52:58 +0000 |
commit | ba59a1e453e110f7b84233f07613f9c5d9a39b87 (patch) | |
tree | 91b99b547060bdc60c14f716fc7ed29ba57c3a01 /lib/CodeGen/LiveIntervalAnalysis.cpp | |
parent | 258ff6726d6c079ec6c5b13e340299cbf7300299 (diff) |
Match TargetInstrInfo changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32098 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LiveIntervalAnalysis.cpp')
-rw-r--r-- | lib/CodeGen/LiveIntervalAnalysis.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp index 094b9ce4dc..10a3565c33 100644 --- a/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/lib/CodeGen/LiveIntervalAnalysis.cpp @@ -433,8 +433,7 @@ static bool isReDefinedByTwoAddr(MachineInstr *MI, unsigned Reg, for (unsigned j = i+1; j < e; ++j) { MachineOperand &MO2 = MI->getOperand(j); if (MO2.isRegister() && MO2.isUse() && MO2.getReg() == Reg && - TII->getOperandConstraint(MI->getOpcode(), j, - TargetInstrInfo::TIED_TO) == (int)i) + TII->getOperandConstraint(MI->getOpcode(),j,TOI::TIED_TO) == (int)i) return true; } } |