summaryrefslogtreecommitdiff
path: root/utils/TableGen/CodeGenRegisters.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-08-21 19:21:21 +0000
committerChris Lattner <sabre@nondot.org>2004-08-21 19:21:21 +0000
commit57677755055be6c95289fbe7a2a1edd88ac39818 (patch)
treeb4a5cae4f4a3083505bdf3d63f074b8ffcd6dd52 /utils/TableGen/CodeGenRegisters.h
parent12585baf1a086f7d54e0ac963e3b0e7b6792b80c (diff)
downloadllvm-57677755055be6c95289fbe7a2a1edd88ac39818.tar.gz
llvm-57677755055be6c95289fbe7a2a1edd88ac39818.tar.bz2
llvm-57677755055be6c95289fbe7a2a1edd88ac39818.tar.xz
Support "Methods" in register classes in CodgeGenRegisterClass
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15965 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/CodeGenRegisters.h')
-rw-r--r--utils/TableGen/CodeGenRegisters.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/CodeGenRegisters.h b/utils/TableGen/CodeGenRegisters.h
index bbec4ea670..e6838d5729 100644
--- a/utils/TableGen/CodeGenRegisters.h
+++ b/utils/TableGen/CodeGenRegisters.h
@@ -26,7 +26,6 @@ namespace llvm {
Record *TheDef;
const std::string &getName() const;
unsigned DeclaredSpillSize, DeclaredSpillAlignment;
-
CodeGenRegister(Record *R);
};
@@ -36,6 +35,7 @@ namespace llvm {
std::vector<Record*> Elements;
unsigned SpillSize;
unsigned SpillAlignment;
+ std::string MethodDefinitions;
const std::string &getName() const;