diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2011-02-09 21:04:32 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2011-02-09 21:04:32 +0000 |
commit | 14b6ba77710d6431794d65c7d58c6f29c3dc956e (patch) | |
tree | 3b7c789d69dd7808da2d135caae3200ebecb639a /include/clang/Serialization/ASTBitCodes.h | |
parent | eb4c45b383b4a8f69d23e4b9cfb6dd3e6f8ff641 (diff) |
AST, Sema, Serialization: keep track of cudaConfigureCall
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@125216 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Serialization/ASTBitCodes.h')
-rw-r--r-- | include/clang/Serialization/ASTBitCodes.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/clang/Serialization/ASTBitCodes.h b/include/clang/Serialization/ASTBitCodes.h index 5c9a3086cb..13e857511f 100644 --- a/include/clang/Serialization/ASTBitCodes.h +++ b/include/clang/Serialization/ASTBitCodes.h @@ -347,7 +347,10 @@ namespace clang { CXX_BASE_SPECIFIER_OFFSETS = 37, /// \brief Record code for #pragma diagnostic mappings. - DIAG_PRAGMA_MAPPINGS = 38 + DIAG_PRAGMA_MAPPINGS = 38, + + /// \brief Record code for special CUDA declarations. + CUDA_SPECIAL_DECL_REFS = 39 }; /// \brief Record types used within a source manager block. |