diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-10-18 18:36:53 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-10-18 18:36:53 +0000 |
commit | 39c497b6d5e99acecbe03ee173249ee21933e855 (patch) | |
tree | 492ae6de7a512e321f32c981d8bec1ab3324f333 /include/clang/Serialization/ASTBitCodes.h | |
parent | 7ae467f02b0f2ba3897ee03e0d011433789b5434 (diff) |
Collapse the original file name and original file ID records into a
single record.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166206 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, 4 insertions, 7 deletions
diff --git a/include/clang/Serialization/ASTBitCodes.h b/include/clang/Serialization/ASTBitCodes.h index bed807ae0e..a22cac523b 100644 --- a/include/clang/Serialization/ASTBitCodes.h +++ b/include/clang/Serialization/ASTBitCodes.h @@ -246,15 +246,12 @@ namespace clang { TARGET_OPTIONS = 4, /// \brief Record code for the original file that was used to - /// generate the AST file. - ORIGINAL_FILE_NAME = 5, - - /// \brief Record code for the file ID of the original file used to - /// generate the AST file. - ORIGINAL_FILE_ID = 6, + /// generate the AST file, including both its file ID and its + /// name. + ORIGINAL_FILE = 5, /// \brief The directory that the PCH was originally created in. - ORIGINAL_PCH_DIR = 7 + ORIGINAL_PCH_DIR = 6 }; /// \brief Record types that occur within the AST block itself. |