diff options
author | Manman Ren <manman.ren@gmail.com> | 2016-08-18 17:42:15 +0000 |
---|---|---|
committer | Manman Ren <manman.ren@gmail.com> | 2016-08-18 17:42:15 +0000 |
commit | 11f2a477721c416abb3015b0a06d28869211bf3e (patch) | |
tree | 3cddfde033f1fa7ff40cec786759a63eb004f59c /clang/lib/Serialization/ASTReaderDecl.cpp | |
parent | c948d182e12c94585e8996b8d432ba6427fdd12c (diff) | |
download | bcm5719-llvm-11f2a477721c416abb3015b0a06d28869211bf3e.tar.gz bcm5719-llvm-11f2a477721c416abb3015b0a06d28869211bf3e.zip |
Module: add -fprebuilt-module-path to support loading prebuilt modules.
In this mode, there is no need to load any module map and the programmer can
simply use "@import" syntax to load the module directly from a prebuilt
module path. When loading from prebuilt module path, we don't support
rebuilding of the module files and we ignore compatible configuration
mismatches.
rdar://27290316
Differential Revision: http://reviews.llvm.org/D23125
llvm-svn: 279096
Diffstat (limited to 'clang/lib/Serialization/ASTReaderDecl.cpp')
-rw-r--r-- | clang/lib/Serialization/ASTReaderDecl.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/clang/lib/Serialization/ASTReaderDecl.cpp b/clang/lib/Serialization/ASTReaderDecl.cpp index e1859388f57..209f95a5859 100644 --- a/clang/lib/Serialization/ASTReaderDecl.cpp +++ b/clang/lib/Serialization/ASTReaderDecl.cpp @@ -1398,7 +1398,7 @@ void ASTDeclReader::VisitNamespaceDecl(NamespaceDecl *D) { // any other module's anonymous namespaces, so don't attach the anonymous // namespace at all. NamespaceDecl *Anon = cast<NamespaceDecl>(Reader.GetDecl(AnonNamespace)); - if (F.Kind != MK_ImplicitModule && F.Kind != MK_ExplicitModule) + if (!F.isModule()) D->setAnonymousNamespace(Anon); } } @@ -3767,8 +3767,7 @@ void ASTDeclReader::UpdateDecl(Decl *D, ModuleFile &ModuleFile, // Each module has its own anonymous namespace, which is disjoint from // any other module's anonymous namespaces, so don't attach the anonymous // namespace at all. - if (ModuleFile.Kind != MK_ImplicitModule && - ModuleFile.Kind != MK_ExplicitModule) { + if (!ModuleFile.isModule()) { if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(D)) TU->setAnonymousNamespace(Anon); else |