diff options
author | Anders Carlsson <andersca@mac.com> | 2010-04-08 16:18:36 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-04-08 16:18:36 +0000 |
commit | ec9c202e9d7d665b178e193531094602ee9c95b3 (patch) | |
tree | eed07b03ecbe0895fb801734602c6256e896d354 /lib/CodeGen/CGVtable.cpp | |
parent | e17ad2fd5c4b66c712bdffd2789eaafc54a9b001 (diff) |
Clarify an assert.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@100776 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGVtable.cpp')
-rw-r--r-- | lib/CodeGen/CGVtable.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/CGVtable.cpp b/lib/CodeGen/CGVtable.cpp index e23289a01a..c157a5e4dd 100644 --- a/lib/CodeGen/CGVtable.cpp +++ b/lib/CodeGen/CGVtable.cpp @@ -2544,6 +2544,9 @@ int64_t CodeGenVTables::getVirtualBaseOffsetOffset(const CXXRecordDecl *RD, uint64_t CodeGenVTables::getAddressPoint(BaseSubobject Base, const CXXRecordDecl *RD) { + assert(AddressPoints.count(std::make_pair(RD, Base)) && + "Did not find address point!"); + uint64_t AddressPoint = AddressPoints.lookup(std::make_pair(RD, Base)); assert(AddressPoint && "Address point must not be zero!"); |