aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-07-29 21:36:49 +0000
committerChris Lattner <sabre@nondot.org>2009-07-29 21:36:49 +0000
commit2a3868849438a0a0ad4f9a50f2b94eb1639b554e (patch)
tree207c400577ae0d0da9afc4e32ae7c7eaabd04318 /include
parent20a2a0aff3221e2c777558d714753bae0f296c8d (diff)
downloadexternal_llvm-2a3868849438a0a0ad4f9a50f2b94eb1639b554e.zip
external_llvm-2a3868849438a0a0ad4f9a50f2b94eb1639b554e.tar.gz
external_llvm-2a3868849438a0a0ad4f9a50f2b94eb1639b554e.tar.bz2
inline the global 'getInstrOperandRegClass' function into its callers
now that TargetOperandInfo does the heavy lifting. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77508 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Target/TargetInstrInfo.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/llvm/Target/TargetInstrInfo.h b/include/llvm/Target/TargetInstrInfo.h
index 5e1a9cf..c47b418 100644
--- a/include/llvm/Target/TargetInstrInfo.h
+++ b/include/llvm/Target/TargetInstrInfo.h
@@ -488,12 +488,6 @@ public:
virtual unsigned GetFunctionSizeInBytes(const MachineFunction &MF) const;
};
-/// getInstrOperandRegClass - Return register class of the operand of an
-/// instruction of the specified TargetInstrDesc.
-const TargetRegisterClass*
-getInstrOperandRegClass(const TargetRegisterInfo *TRI,
- const TargetInstrDesc &II, unsigned Op);
-
} // End llvm namespace
#endif