From: Devang Patel Date: Thu, 14 Oct 2010 22:59:23 +0000 (+0000) Subject: Use root non-virtual primary base class, not just immediate primary base class, for... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5bc794ff3034bad2b231b0841ea6d0a711c4af59;p=clang Use root non-virtual primary base class, not just immediate primary base class, for AT_containing_type. This is tested by virtfunc.exp in gdb testsuite. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@116535 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGDebugInfo.cpp b/lib/CodeGen/CGDebugInfo.cpp index 404c010c77..224710af35 100644 --- a/lib/CodeGen/CGDebugInfo.cpp +++ b/lib/CodeGen/CGDebugInfo.cpp @@ -1018,9 +1018,19 @@ llvm::DIType CGDebugInfo::CreateType(const RecordType *Ty, // A class's primary base or the class itself contains the vtable. const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD); - if (const CXXRecordDecl *PBase = RL.getPrimaryBase()) + if (const CXXRecordDecl *PBase = RL.getPrimaryBase()) { + // Seek non virtual primary base root. + while (1) { + const ASTRecordLayout &BRL = CGM.getContext().getASTRecordLayout(PBase); + const CXXRecordDecl *PBT = BRL.getPrimaryBase(); + if (PBT && !BRL.getPrimaryBaseWasVirtual()) + PBase = PBT; + else + break; + } ContainingType = getOrCreateType(QualType(PBase->getTypeForDecl(), 0), Unit); + } else if (CXXDecl->isDynamicClass()) ContainingType = FwdDecl; }