Don't generate getCalleeSaveReg and getCalleeSaveRegClasses anymore.
[oota-llvm.git] / utils / TableGen / CodeGenTarget.h
index f1f13fabd9a3e179c4e18e069e8a0c8e1a76e75d..dd58d929f8864460367098803661f109c0a21ef9 100644 (file)
@@ -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;