diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2010-07-23 19:11:11 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-07-23 19:11:11 +0000 |
commit | 320198303df7c16950d83ae79c3f702b84badcf7 (patch) | |
tree | 04296f2796785541c5ddb347e31c84c3a8692707 /include/clang/Frontend/PCHBitCodes.h | |
parent | cdd209dd9eb22a33cc9017f6605375fd17c9e809 (diff) |
PCH read/write for selector reference pool.
Finishes off radar 6507158.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@109256 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/PCHBitCodes.h')
-rw-r--r-- | include/clang/Frontend/PCHBitCodes.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/clang/Frontend/PCHBitCodes.h b/include/clang/Frontend/PCHBitCodes.h index 25d3f09127..0a51961413 100644 --- a/include/clang/Frontend/PCHBitCodes.h +++ b/include/clang/Frontend/PCHBitCodes.h @@ -236,8 +236,10 @@ namespace clang { /// \brief Record code for the chained PCH metadata, including the /// PCH version and the name of the PCH this is chained to. - CHAINED_METADATA = 26 - + CHAINED_METADATA = 26, + + /// \brief Record code for referenced selector pool. + REFERENCED_SELECTOR_POOL = 27 }; /// \brief Record types used within a source manager block. |