diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-10-24 15:17:15 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-10-24 15:17:15 +0000 |
commit | 5f3d8224af99ad0d9107601c0c31b74693371cc1 (patch) | |
tree | ccb78103e62bda6da4e2fbce57145eb303f4f068 /include/clang/Serialization/ASTBitCodes.h | |
parent | 6e347bccd1f132a41f9b72adbd25dc6be1dabe90 (diff) |
Serialize DiagnosticOptions to the AST file.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166572 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 1cf118638c..6e3bd149de 100644 --- a/include/clang/Serialization/ASTBitCodes.h +++ b/include/clang/Serialization/ASTBitCodes.h @@ -261,7 +261,10 @@ namespace clang { /// \brief Offsets into the input-files block where input files /// reside. - INPUT_FILE_OFFSETS = 7 + INPUT_FILE_OFFSETS = 7, + + /// \brief Record code for the diagnostic options table. + DIAGNOSTIC_OPTIONS = 8 }; /// \brief Record types that occur within the input-files block |