From: Manman Ren Date: Fri, 9 Sep 2016 19:03:07 +0000 (+0000) Subject: Modules: revert r280728. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=02a8764a3d4b6df5657eb12a2a8fdf920c724d18;p=clang Modules: revert r280728. In post-commit review, Richard suggested a better way to fix this. rdar://27926200 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@281078 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/DeclBase.cpp b/lib/AST/DeclBase.cpp index 4d4e725dbd..cea511b511 100644 --- a/lib/AST/DeclBase.cpp +++ b/lib/AST/DeclBase.cpp @@ -1413,6 +1413,10 @@ DeclContext::lookup(DeclarationName Name) const { assert(DeclKind != Decl::LinkageSpec && DeclKind != Decl::Export && "should not perform lookups into transparent contexts"); + const DeclContext *PrimaryContext = getPrimaryContext(); + if (PrimaryContext != this) + return PrimaryContext->lookup(Name); + // If we have an external source, ensure that any later redeclarations of this // context have been loaded, since they may add names to the result of this // lookup (or add external visible storage). @@ -1420,12 +1424,6 @@ DeclContext::lookup(DeclarationName Name) const { if (Source) (void)cast(this)->getMostRecentDecl(); - // getMostRecentDecl can change the result of getPrimaryContext. Call - // getPrimaryContext afterwards. - const DeclContext *PrimaryContext = getPrimaryContext(); - if (PrimaryContext != this) - return PrimaryContext->lookup(Name); - if (hasExternalVisibleStorage()) { assert(Source && "external visible storage but no external source?"); diff --git a/test/Modules/Inputs/lookup-assert/Base.h b/test/Modules/Inputs/lookup-assert/Base.h deleted file mode 100644 index 8d5e06b436..0000000000 --- a/test/Modules/Inputs/lookup-assert/Base.h +++ /dev/null @@ -1,4 +0,0 @@ -@interface BaseInterface -- (void) test; -@end - diff --git a/test/Modules/Inputs/lookup-assert/Derive.h b/test/Modules/Inputs/lookup-assert/Derive.h deleted file mode 100644 index 313a96188d..0000000000 --- a/test/Modules/Inputs/lookup-assert/Derive.h +++ /dev/null @@ -1,3 +0,0 @@ -#include "Base.h" -@interface DerivedInterface : BaseInterface -@end diff --git a/test/Modules/Inputs/lookup-assert/H3.h b/test/Modules/Inputs/lookup-assert/H3.h deleted file mode 100644 index 3d8f878905..0000000000 --- a/test/Modules/Inputs/lookup-assert/H3.h +++ /dev/null @@ -1 +0,0 @@ -#include "Base.h" diff --git a/test/Modules/Inputs/lookup-assert/module.map b/test/Modules/Inputs/lookup-assert/module.map deleted file mode 100644 index e8a89eb095..0000000000 --- a/test/Modules/Inputs/lookup-assert/module.map +++ /dev/null @@ -1,4 +0,0 @@ -module X { - header "H3.h" - export * -} diff --git a/test/Modules/lookup-assert.m b/test/Modules/lookup-assert.m deleted file mode 100644 index 2697fb15d0..0000000000 --- a/test/Modules/lookup-assert.m +++ /dev/null @@ -1,10 +0,0 @@ -// RUN: rm -rf %t -// RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -I %S/Inputs/lookup-assert %s -verify -// expected-no-diagnostics - -#include "Derive.h" -#import -@implementation DerivedInterface -- (void)test { -} -@end