From: Anders Carlsson Date: Mon, 29 Mar 2010 02:14:35 +0000 (+0000) Subject: Use the newly added function in the VTT builder. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0a4a2fd5da5312a0dbc98198a49928c852180411;p=clang Use the newly added function in the VTT builder. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@99799 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGVTT.cpp b/lib/CodeGen/CGVTT.cpp index 888dcd1213..cdc8133c12 100644 --- a/lib/CodeGen/CGVTT.cpp +++ b/lib/CodeGen/CGVTT.cpp @@ -183,9 +183,8 @@ void VTTBuilder::AddVTablePointer(BaseSubobject Base, llvm::Constant *VTable, // address points. AddressPoint = AddressPoints.lookup(Base); } else { - AddressPoint = - (*this->AddressPoints[VTableClass])[std::make_pair(Base.getBase(), - Base.getBaseOffset())]; + // Just get the address point for the regular vtable. + AddressPoint = CGM.getVTables().getAddressPoint(Base, VTableClass); } if (!AddressPoint) AddressPoint = 0;