aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Frontend/PCHBitCodes.h
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-04-13 22:18:37 +0000
committerDouglas Gregor <dgregor@apple.com>2009-04-13 22:18:37 +0000
commit3a2f7e42514ddbec983c61826ce85d3071e23e8e (patch)
treeaed92dce2f9f61e77479495cb419c57e7dc956cf /include/clang/Frontend/PCHBitCodes.h
parent0f59312e7b625fa5821a63db65377d4b3b667e99 (diff)
PCH support for functions and their parameters.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68997 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/PCHBitCodes.h')
-rw-r--r--include/clang/Frontend/PCHBitCodes.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/clang/Frontend/PCHBitCodes.h b/include/clang/Frontend/PCHBitCodes.h
index 14c59712ec..e1303056f8 100644
--- a/include/clang/Frontend/PCHBitCodes.h
+++ b/include/clang/Frontend/PCHBitCodes.h
@@ -320,10 +320,16 @@ namespace clang {
DECL_RECORD,
/// \brief An EnumConstantDecl record.
DECL_ENUM_CONSTANT,
+ /// \brief A FunctionDecl record.
+ DECL_FUNCTION,
/// \brief A FieldDecl record.
DECL_FIELD,
/// \brief A VarDecl record.
DECL_VAR,
+ /// \brief A ParmVarDecl record.
+ DECL_PARM_VAR,
+ /// \brief An OriginalParmVarDecl record.
+ DECL_ORIGINAL_PARM_VAR,
/// \brief A record that stores the set of declarations that are
/// lexically stored within a given DeclContext.
///