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 | 26416068d3eb883a280fdceeffa74fffc9131031 (patch) | |
tree | 21c10fe2a4c4474f0c7b0b9acb3dfbc29360fa0d /lib/Sema/SemaTemplate.cpp | |
parent | 744823c8741b858a477545eeea28f17570dc2e24 (diff) |
Fix some major problems dealing with dependently-qualified names in implicit
member-reference contexts. Fixes some clang-on-clang asserts.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89796 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaTemplate.cpp')
-rw-r--r-- | lib/Sema/SemaTemplate.cpp | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/lib/Sema/SemaTemplate.cpp b/lib/Sema/SemaTemplate.cpp index 0e680f6438..8ab8d93186 100644 --- a/lib/Sema/SemaTemplate.cpp +++ b/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 |