diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-10-18 18:27:37 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-10-18 18:27:37 +0000 |
commit | 7ae467f02b0f2ba3897ee03e0d011433789b5434 (patch) | |
tree | 01353e70f0dc3d33466ae2019806570e65cfc17b /include/clang/Serialization | |
parent | 7ae5717de7a6a20df60b7b058eb04c2452e39906 (diff) |
Collapse the "version control revision/tag" AST file record into the
metadata record, which already had other version information. Clean up
the block info block along the way.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166204 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Serialization')
-rw-r--r-- | include/clang/Serialization/ASTBitCodes.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/include/clang/Serialization/ASTBitCodes.h b/include/clang/Serialization/ASTBitCodes.h index 5bc1598bc6..bed807ae0e 100644 --- a/include/clang/Serialization/ASTBitCodes.h +++ b/include/clang/Serialization/ASTBitCodes.h @@ -227,7 +227,7 @@ namespace clang { /// \brief Record types that occur within the control block. enum ControlRecordTypes { /// \brief AST file metadata, including the AST file version number - /// and the target triple used to build the AST file. + /// and information about the compiler used to build this AST file. METADATA = 1, /// \brief Record code for the list of other AST files imported by @@ -254,11 +254,7 @@ namespace clang { ORIGINAL_FILE_ID = 6, /// \brief The directory that the PCH was originally created in. - 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 = 8 + ORIGINAL_PCH_DIR = 7 }; /// \brief Record types that occur within the AST block itself. |