diff options
author | Alex Lorenz <arphaman@gmail.com> | 2016-12-07 10:24:44 +0000 |
---|---|---|
committer | Alex Lorenz <arphaman@gmail.com> | 2016-12-07 10:24:44 +0000 |
commit | e151f010deab7417abf663fb1c8ff841539903e7 (patch) | |
tree | a6d9821dbfb097e82234e4f8227c749f3b7bf72e /clang/lib/Sema/SemaCXXScopeSpec.cpp | |
parent | 59336a0a45c64bef27adf2476274466134693723 (diff) | |
download | bcm5719-llvm-e151f010deab7417abf663fb1c8ff841539903e7.tar.gz bcm5719-llvm-e151f010deab7417abf663fb1c8ff841539903e7.zip |
[ObjC++] Don't enter a C++ declarator scope when the current context is
an Objective-C declaration
This commit ensures that Sema won't enter a C++ declarator scope when the
current context is an Objective-C declaration. This prevents an assertion
failure in EnterDeclaratorContext that's used to ensure that current context
will be restored correctly after exiting the declarator context.
rdar://20560175
Differential Revision: https://reviews.llvm.org/D26922
llvm-svn: 288893
Diffstat (limited to 'clang/lib/Sema/SemaCXXScopeSpec.cpp')
-rw-r--r-- | clang/lib/Sema/SemaCXXScopeSpec.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/lib/Sema/SemaCXXScopeSpec.cpp b/clang/lib/Sema/SemaCXXScopeSpec.cpp index 6c7d8133173..d8971c0d37e 100644 --- a/clang/lib/Sema/SemaCXXScopeSpec.cpp +++ b/clang/lib/Sema/SemaCXXScopeSpec.cpp @@ -1001,6 +1001,11 @@ void Sema::RestoreNestedNameSpecifierAnnotation(void *AnnotationPtr, bool Sema::ShouldEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS) { assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); + // Don't enter a declarator context when the current context is an Objective-C + // declaration. + if (isa<ObjCContainerDecl>(CurContext) || isa<ObjCMethodDecl>(CurContext)) + return false; + NestedNameSpecifier *Qualifier = SS.getScopeRep(); // There are only two places a well-formed program may qualify a |