diff options
author | Steve Naroff <snaroff@apple.com> | 2009-04-24 20:03:17 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2009-04-24 20:03:17 +0000 |
commit | 83d63c78810556d26b62ac4cbae2eda6cdd2570c (patch) | |
tree | 7444231d9436acad4d523469ba2b027355c4ad2f /include/clang/Frontend/PCHBitCodes.h | |
parent | ff11cd148b66fb4dfb4eef5b9f8c711ab80bd634 (diff) |
Add PCH support for #import.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69987 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, 5 insertions, 1 deletions
diff --git a/include/clang/Frontend/PCHBitCodes.h b/include/clang/Frontend/PCHBitCodes.h index c7c201ddd5..31a30b8f4d 100644 --- a/include/clang/Frontend/PCHBitCodes.h +++ b/include/clang/Frontend/PCHBitCodes.h @@ -211,7 +211,11 @@ namespace clang { /// \brief The value of the next __COUNTER__ to dispense. /// [PP_COUNTER_VALUE, Val] - PP_COUNTER_VALUE = 4 + PP_COUNTER_VALUE = 4, + + /// \brief Describes one header file info [isImport, DirInfo, NumIncludes] + /// ControlloingMacro is optional. + PP_HEADER_FILE_INFO = 5 }; /// \defgroup PCHAST Precompiled header AST constants |