summaryrefslogtreecommitdiff
path: root/utils/TableGen/CodeGenTarget.h
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2006-05-18 00:08:46 +0000
committerEvan Cheng <evan.cheng@apple.com>2006-05-18 00:08:46 +0000
commit764811f1452808ff8a6d84f4ec2637355356e22e (patch)
treeb073e82edf881b69641541a515ac90e7a83411bd /utils/TableGen/CodeGenTarget.h
parentf0dee9b36a4a9a9bd14566f8ddae27be40facbe7 (diff)
downloadllvm-764811f1452808ff8a6d84f4ec2637355356e22e.tar.gz
llvm-764811f1452808ff8a6d84f4ec2637355356e22e.tar.bz2
llvm-764811f1452808ff8a6d84f4ec2637355356e22e.tar.xz
Don't generate getCalleeSaveReg and getCalleeSaveRegClasses anymore.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28376 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/CodeGenTarget.h')
-rw-r--r--utils/TableGen/CodeGenTarget.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/utils/TableGen/CodeGenTarget.h b/utils/TableGen/CodeGenTarget.h
index f1f13fabd9..dd58d929f8 100644
--- a/utils/TableGen/CodeGenTarget.h
+++ b/utils/TableGen/CodeGenTarget.h
@@ -42,7 +42,6 @@ std::string getEnumName(MVT::ValueType T);
///
class CodeGenTarget {
Record *TargetRec;
- std::vector<Record*> CalleeSavedRegisters;
mutable std::map<std::string, CodeGenInstruction> Instructions;
mutable std::vector<CodeGenRegister> Registers;
@@ -58,10 +57,6 @@ public:
Record *getTargetRecord() const { return TargetRec; }
const std::string &getName() const;
- const std::vector<Record*> &getCalleeSavedRegisters() const {
- return CalleeSavedRegisters;
- }
-
/// getInstructionSet - Return the InstructionSet object.
///
Record *getInstructionSet() const;