diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-10-18 17:58:09 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-10-18 17:58:09 +0000 |
commit | ee097c1a3f5e02605dd585c0a9bf22976f09ccc2 (patch) | |
tree | a1815e179cd8e8d74f2285221b15c6aad8456ddf /include/clang/Serialization/ASTBitCodes.h | |
parent | b1502bcd67fb593a95cbf73ec3814f4015666da0 (diff) |
Split the target options out into their own record within the AST
file's control block.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166195 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Serialization/ASTBitCodes.h')
-rw-r--r-- | include/clang/Serialization/ASTBitCodes.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/include/clang/Serialization/ASTBitCodes.h b/include/clang/Serialization/ASTBitCodes.h index b5171f529b..5bc1598bc6 100644 --- a/include/clang/Serialization/ASTBitCodes.h +++ b/include/clang/Serialization/ASTBitCodes.h @@ -242,20 +242,23 @@ namespace clang { /// actually important to check. LANGUAGE_OPTIONS = 3, + /// \brief Record code for the target options table. + TARGET_OPTIONS = 4, + /// \brief Record code for the original file that was used to /// generate the AST file. - ORIGINAL_FILE_NAME = 4, + ORIGINAL_FILE_NAME = 5, /// \brief Record code for the file ID of the original file used to /// generate the AST file. - ORIGINAL_FILE_ID = 5, + ORIGINAL_FILE_ID = 6, /// \brief The directory that the PCH was originally created in. - ORIGINAL_PCH_DIR = 6, + ORIGINAL_PCH_DIR = 7, /// \brief Record code for the version control branch and revision /// information of the compiler used to build this AST file. - VERSION_CONTROL_BRANCH_REVISION = 7 + VERSION_CONTROL_BRANCH_REVISION = 8 }; /// \brief Record types that occur within the AST block itself. |