diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-29 21:36:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-29 21:36:49 +0000 |
commit | a0c38e6f80d46291fd3ce11c7b82026fd8745308 (patch) | |
tree | 207c400577ae0d0da9afc4e32ae7c7eaabd04318 /include | |
parent | 9e7344841ca5369461277f1c7e75bd987e0bc613 (diff) | |
download | external_llvm-a0c38e6f80d46291fd3ce11c7b82026fd8745308.zip external_llvm-a0c38e6f80d46291fd3ce11c7b82026fd8745308.tar.gz external_llvm-a0c38e6f80d46291fd3ce11c7b82026fd8745308.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.h | 6 |
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 |