diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-04-13 21:20:57 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-04-13 21:20:57 +0000 |
commit | 8c70006581a9b9e9485570ca727a6c5f7be63521 (patch) | |
tree | f8f45010e3c0b032611c2c6a8aa5c4b0d66551bc /include/clang/Frontend/PCHBitCodes.h | |
parent | b11fa0d25d86169f0e0a29d5398116c0212bb787 (diff) |
PCH support for record decls/types and their fields. Now that we can
handle the definition of __builtin_va_list on x86-64, eliminate the
forced -triple in PCH tests to get better coverage.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68988 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/PCHBitCodes.h')
-rw-r--r-- | include/clang/Frontend/PCHBitCodes.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/clang/Frontend/PCHBitCodes.h b/include/clang/Frontend/PCHBitCodes.h index fe3d8ed86c..14c59712ec 100644 --- a/include/clang/Frontend/PCHBitCodes.h +++ b/include/clang/Frontend/PCHBitCodes.h @@ -316,8 +316,12 @@ namespace clang { DECL_TYPEDEF, /// \brief An EnumDecl record. DECL_ENUM, + /// \brief A RecordDecl record. + DECL_RECORD, /// \brief An EnumConstantDecl record. DECL_ENUM_CONSTANT, + /// \brief A FieldDecl record. + DECL_FIELD, /// \brief A VarDecl record. DECL_VAR, /// \brief A record that stores the set of declarations that are |