diff options
author | Anders Carlsson <andersca@mac.com> | 2010-05-03 00:07:07 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-05-03 00:07:07 +0000 |
commit | 4235840554aaed11efd479df9e622dc82ab77e6d (patch) | |
tree | d25a0526101edbc5e323329068f215dc8aef6095 /lib/CodeGen/CodeGenFunction.h | |
parent | 77fae58f6dedd85c2506100e1754a2233a9c5e3a (diff) |
More work towards getting rid of OldGetAddressOfBaseClass.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102887 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 7c91c28162..77d4a97d0c 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -538,12 +538,14 @@ public: /// void InitializeVTablePointer(BaseSubobject Base, const CXXRecordDecl *NearestVBase, + uint64_t OffsetFromNearestVBase, llvm::Constant *VTable, const CXXRecordDecl *VTableClass); typedef llvm::SmallPtrSet<const CXXRecordDecl *, 4> VisitedVirtualBasesSetTy; void InitializeVTablePointers(BaseSubobject Base, const CXXRecordDecl *NearestVBase, + uint64_t OffsetFromNearestVBase, bool BaseIsNonVirtualPrimaryBase, llvm::Constant *VTable, const CXXRecordDecl *VTableClass, |