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 | 67fc141db590de46b564b634897ff8948255b39c (patch) | |
tree | 688096a7b561522fc7ffae2b3650743455ea9679 /llvm/lib/Target/TargetInstrInfo.cpp | |
parent | 07fc107e90793c52c7902b0471ad6b5bf60f8da4 (diff) | |
download | bcm5719-llvm-67fc141db590de46b564b634897ff8948255b39c.tar.gz bcm5719-llvm-67fc141db590de46b564b634897ff8948255b39c.zip |
Match TargetInstrInfo changes.
llvm-svn: 32098
Diffstat (limited to 'llvm/lib/Target/TargetInstrInfo.cpp')
-rw-r--r-- | llvm/lib/Target/TargetInstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/TargetInstrInfo.cpp b/llvm/lib/Target/TargetInstrInfo.cpp index 56b4e4194e5..c29b1c54b4f 100644 --- a/llvm/lib/Target/TargetInstrInfo.cpp +++ b/llvm/lib/Target/TargetInstrInfo.cpp @@ -32,7 +32,7 @@ TargetInstrInfo::findTiedToSrcOperand(MachineOpCode Opc, unsigned OpNum) const { for (unsigned i = 0, e = getNumOperands(Opc); i != e; ++i) { if (i == OpNum) continue; - int ti = getOperandConstraint(Opc, i, TIED_TO); + int ti = getOperandConstraint(Opc, i, TOI::TIED_TO); if (ti == (int)OpNum) return i; } |