aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2006-12-08 07:57:56 +0000
committerEvan Cheng <evan.cheng@apple.com>2006-12-08 07:57:56 +0000
commit3cc3816cd4dc92fbb0a2de93bdebb68dfcea31d5 (patch)
tree2774eaba9b1ae1d1515aa286561c6bbf4bb5a906 /lib
parentc5f8e4f13406c86785069839c1edfb86ae767e63 (diff)
Use MI's TargetInstrDescriptor.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32352 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/TargetInstrInfo.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/Target/TargetInstrInfo.cpp b/lib/Target/TargetInstrInfo.cpp
index c29b1c54b4..0e79baac7c 100644
--- a/lib/Target/TargetInstrInfo.cpp
+++ b/lib/Target/TargetInstrInfo.cpp
@@ -27,13 +27,12 @@ TargetInstrInfo::~TargetInstrInfo() {
/// findTiedToSrcOperand - Returns the operand that is tied to the specified
/// dest operand. Returns -1 if there isn't one.
-int
-TargetInstrInfo::findTiedToSrcOperand(MachineOpCode Opc, unsigned OpNum) const {
- for (unsigned i = 0, e = getNumOperands(Opc); i != e; ++i) {
+int TargetInstrInfo::findTiedToSrcOperand(const TargetInstrDescriptor *TID,
+ unsigned OpNum) const {
+ for (unsigned i = 0, e = TID->numOperands; i != e; ++i) {
if (i == OpNum)
continue;
- int ti = getOperandConstraint(Opc, i, TOI::TIED_TO);
- if (ti == (int)OpNum)
+ if (TID->getOperandConstraint(i, TOI::TIED_TO) == (int)OpNum)
return i;
}
return -1;