PCH support for the global method pool (= instance and factory method
pools, combined). The methods in the global method pool are lazily
loaded from an on-disk hash table when Sema looks into its version of
the hash tables.




git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69989 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/clang/Frontend/PCHBitCodes.h b/include/clang/Frontend/PCHBitCodes.h
index 31a30b8..b84d2ed 100644
--- a/include/clang/Frontend/PCHBitCodes.h
+++ b/include/clang/Frontend/PCHBitCodes.h
@@ -168,7 +168,10 @@
       LOCALLY_SCOPED_EXTERNAL_DECLS = 11,
       
       /// \brief Record code for the Objective-C Selector Table.
-      SELECTOR_TABLE = 12
+      SELECTOR_TABLE = 12,
+
+      /// \brief Record code for the Objective-C method pool,
+      METHOD_POOL = 13
     };
 
     /// \brief Record types used within a source manager block.