aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Frontend/PCHBitCodes.h
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2010-07-06 15:37:04 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2010-07-06 15:37:04 +0000
commitd455add086f1dfa16ae87dc310e49493bbc2b0a6 (patch)
treebe6653edd7f1afc6ba53accbbfdf403affc63933 /include/clang/Frontend/PCHBitCodes.h
parent0f47bb98cbc52a6ead2aef8a2f8315c0b6167e6c (diff)
Add to PCH missing Sema information about VTable uses and dynamic classes.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107664 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/PCHBitCodes.h')
-rw-r--r--include/clang/Frontend/PCHBitCodes.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/include/clang/Frontend/PCHBitCodes.h b/include/clang/Frontend/PCHBitCodes.h
index 3e11894474..f3fb053f3c 100644
--- a/include/clang/Frontend/PCHBitCodes.h
+++ b/include/clang/Frontend/PCHBitCodes.h
@@ -226,7 +226,14 @@ namespace clang {
/// \brief Record code for the table of offsets to macro definition
/// entries in the preprocessing record.
- MACRO_DEFINITION_OFFSETS = 23
+ MACRO_DEFINITION_OFFSETS = 23,
+
+ /// \brief Record code for the array of VTable uses.
+ VTABLE_USES = 24,
+
+ /// \brief Record code for the array of dynamic classes.
+ DYNAMIC_CLASSES = 25
+
};
/// \brief Record types used within a source manager block.