diff options
author | John McCall <rjmccall@apple.com> | 2009-11-24 20:33:45 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2009-11-24 20:33:45 +0000 |
commit | 45b1a47a9cf7bda4dcee3b382f8069ca13ef08b6 (patch) | |
tree | 989b0f824e3604629fc62097deb0a8a1ba56bee7 /clang/lib/Sema/SemaTemplate.cpp | |
parent | b3e0168428de7994560a37ae1d931dd9d1f367a9 (diff) | |
download | bcm5719-llvm-45b1a47a9cf7bda4dcee3b382f8069ca13ef08b6.tar.gz bcm5719-llvm-45b1a47a9cf7bda4dcee3b382f8069ca13ef08b6.zip |
Fix some major problems dealing with dependently-qualified names in implicit
member-reference contexts. Fixes some clang-on-clang asserts.
llvm-svn: 89796
Diffstat (limited to 'clang/lib/Sema/SemaTemplate.cpp')
-rw-r--r-- | clang/lib/Sema/SemaTemplate.cpp | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/clang/lib/Sema/SemaTemplate.cpp b/clang/lib/Sema/SemaTemplate.cpp index 0e680f64381..8ab8d93186a 100644 --- a/clang/lib/Sema/SemaTemplate.cpp +++ b/clang/lib/Sema/SemaTemplate.cpp @@ -327,7 +327,11 @@ static bool HasDependentTypeAsBase(ASTContext &Context, // }; CanQual<RecordType> RT = BaseT->getAs<RecordType>(); - assert(RT && "base is not a record type"); + + // Base might be a dependent member type, in which case we + // obviously can't look into it. + if (!RT) continue; + CXXRecordDecl *BaseRecord = cast<CXXRecordDecl>(RT->getDecl()); if (BaseRecord->isDefinition() && HasDependentTypeAsBase(Context, BaseRecord, T)) @@ -364,14 +368,17 @@ static bool IsImplicitDependentMemberReference(Sema &SemaRef, QualType QT = GetTypeForQualifier(Context, Qualifier); CanQualType T = Context.getCanonicalType(QT); - + // And now, just walk the non-dependent type hierarchy, trying to // find the given type as a literal base class. CXXRecordDecl *Record = cast<CXXRecordDecl>(MD->getParent()); - if (Context.getCanonicalType(Context.getTypeDeclType(Record)) == T) + if (Context.getCanonicalType(Context.getTypeDeclType(Record)) == T || + HasDependentTypeAsBase(Context, Record, T)) { + ThisType = MD->getThisType(Context); return true; + } - return HasDependentTypeAsBase(Context, Record, T); + return false; } /// ActOnDependentIdExpression - Handle a dependent declaration name |