diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-10-24 15:49:58 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-10-24 15:49:58 +0000 |
commit | 1b2c3c0884e917ae5d59edde7d93b2af33c6a1b6 (patch) | |
tree | 01b69b191e30f34a67de28c7e000ea38a1428245 /include/clang/Serialization/ASTBitCodes.h | |
parent | 5f3d8224af99ad0d9107601c0c31b74693371cc1 (diff) |
(De-)serialize the file system options.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166577 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 6e3bd149de..723404a996 100644 --- a/include/clang/Serialization/ASTBitCodes.h +++ b/include/clang/Serialization/ASTBitCodes.h @@ -264,7 +264,10 @@ namespace clang { INPUT_FILE_OFFSETS = 7, /// \brief Record code for the diagnostic options table. - DIAGNOSTIC_OPTIONS = 8 + DIAGNOSTIC_OPTIONS = 8, + + /// \brief Record code for the filesystem options table. + FILE_SYSTEM_OPTIONS = 9 }; /// \brief Record types that occur within the input-files block |