diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-10-18 21:31:35 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-10-18 21:31:35 +0000 |
commit | caed060d38f404c3a7650dbd236c25ec356bc5a3 (patch) | |
tree | 130441295ed117cd7f383da608de89c39c3c7302 /include/clang/Serialization/Module.h | |
parent | 11407b89c9d7ce8bc31869b0a7aae06add49e3dc (diff) |
Move the "RelocatablePCH" bit from the ASTReader to the module file.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166229 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Serialization/Module.h')
-rw-r--r-- | include/clang/Serialization/Module.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/clang/Serialization/Module.h b/include/clang/Serialization/Module.h index a4c156e293..30bed03b8a 100644 --- a/include/clang/Serialization/Module.h +++ b/include/clang/Serialization/Module.h @@ -92,6 +92,9 @@ public: /// allow resolving headers even after headers+PCH was moved to a new path. std::string OriginalDir; + /// \brief Whether this precompiled header is a relocatable PCH file. + bool RelocatablePCH; + /// \brief The file entry for the module file. const FileEntry *File; |