diff options
Diffstat (limited to 'lib/CodeGen/CGVTT.cpp')
-rw-r--r-- | lib/CodeGen/CGVTT.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGVTT.cpp b/lib/CodeGen/CGVTT.cpp index 6b21046b4c..888dcd1213 100644 --- a/lib/CodeGen/CGVTT.cpp +++ b/lib/CodeGen/CGVTT.cpp @@ -166,7 +166,7 @@ void VTTBuilder::AddVTablePointer(BaseSubobject Base, llvm::Constant *VTable, const CXXRecordDecl *VTableClass, const AddressPointsMapTy& AddressPoints) { // Store the vtable pointer index if we're generating the primary VTT. - if (Base.getBase() == MostDerivedClass) { + if (VTableClass == MostDerivedClass) { assert(!SecondaryVirtualPointerIndices.count(Base) && "A virtual pointer index already exists for this base subobject!"); SecondaryVirtualPointerIndices[Base] = VTTComponents.size(); |