diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-07-28 22:39:26 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-07-28 22:39:26 +0000 |
commit | 86c67d8802a9e0887c31c850188991465ac3c1bd (patch) | |
tree | 38778746b610eb0736d8a058e053f1587afdf5a2 /include/clang/Serialization/ASTBitCodes.h | |
parent | e144c70d07bf7af6c0337000ac4c4e805fc6d842 (diff) |
Introduce the local-global mapping for preprocessed entities, and use
it appropriately. Also, patch up a place where we were failing to map
local macro definition IDs into global macro definition IDs.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@136411 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Serialization/ASTBitCodes.h')
-rw-r--r-- | include/clang/Serialization/ASTBitCodes.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/clang/Serialization/ASTBitCodes.h b/include/clang/Serialization/ASTBitCodes.h index 4e7b0faebf..908aa4b070 100644 --- a/include/clang/Serialization/ASTBitCodes.h +++ b/include/clang/Serialization/ASTBitCodes.h @@ -134,6 +134,10 @@ namespace clang { /// AST file. typedef uint32_t CXXBaseSpecifiersID; + /// \brief An ID number that refers to an entity in the detailed + /// preprocessing record. + typedef uint32_t PreprocessedEntityID; + /// \brief Describes the various kinds of blocks that occur within /// an AST file. enum BlockIDs { |