diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-04-13 16:31:14 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-04-13 16:31:14 +0000 |
commit | bd94500d3aa60092fb0f1e90f53fb0d03fa502a8 (patch) | |
tree | dd90843141e75cf924a7653bb074db647ff3e23f /include/clang/Frontend/PCHBitCodes.h | |
parent | d4f77aa7c276be49aee5e59ef509cb91e26aa79f (diff) |
Include the SourceManager's line table in the PCH file. We can now
properly cope with #line directives in PCH files.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68963 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/PCHBitCodes.h')
-rw-r--r-- | include/clang/Frontend/PCHBitCodes.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/clang/Frontend/PCHBitCodes.h b/include/clang/Frontend/PCHBitCodes.h index 7782f36f43..79d70c8a61 100644 --- a/include/clang/Frontend/PCHBitCodes.h +++ b/include/clang/Frontend/PCHBitCodes.h @@ -147,7 +147,10 @@ namespace clang { SM_SLOC_BUFFER_BLOB = 3, /// \brief Describes a source location entry (SLocEntry) for a /// macro instantiation. - SM_SLOC_INSTANTIATION_ENTRY = 4 + SM_SLOC_INSTANTIATION_ENTRY = 4, + /// \brief Describes the SourceManager's line table, with + /// information about #line directives. + SM_LINE_TABLE = 5 }; /// \brief Record types used within a preprocessor block. |