diff options
author | Sean Hunt <rideau3@gmail.com> | 2010-05-18 06:22:21 +0000 |
---|---|---|
committer | Sean Hunt <rideau3@gmail.com> | 2010-05-18 06:22:21 +0000 |
commit | 7381d5cfbd599fa2b9e215011ad7cbd449de231a (patch) | |
tree | 4cf8d9aa4ef5400c2bb734b6bb755bcd315676a1 /lib/AST/Stmt.cpp | |
parent | 80f93d9fe82ebe7e58913646248240de838283be (diff) |
Switch over the tablegen to use much prettier range technology
Also rename ABSTRACT to ABSTRACT_STMT, in keeping with the other .def
files
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@104017 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/Stmt.cpp')
-rw-r--r-- | lib/AST/Stmt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/Stmt.cpp b/lib/AST/Stmt.cpp index f6f3ae5c88..80f5695e42 100644 --- a/lib/AST/Stmt.cpp +++ b/lib/AST/Stmt.cpp @@ -36,7 +36,7 @@ static StmtClassNameTable &getStmtInfoTableEntry(Stmt::StmtClass E) { // Intialize the table on the first use. Initialized = true; -#define ABSTRACT(STMT) +#define ABSTRACT_STMT(STMT) #define STMT(CLASS, PARENT) \ StmtClassInfo[(unsigned)Stmt::CLASS##Class].Name = #CLASS; \ StmtClassInfo[(unsigned)Stmt::CLASS##Class].Size = sizeof(CLASS); |