diff options
author | Mike Stump <mrs@apple.com> | 2009-11-11 20:26:26 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-11-11 20:26:26 +0000 |
commit | 8cfcb52059d5ff8596cc7a92d856800b9f0da1dc (patch) | |
tree | 54e68064d233d8503536828e8d0680ba55ec22c7 /lib/CodeGen/CGVtable.h | |
parent | 10f51e8785e43d5a22acc2d2a638307c582949c2 (diff) |
Push ctor vtable construction down further. WIP.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86878 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGVtable.h')
-rw-r--r-- | lib/CodeGen/CGVtable.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/CodeGen/CGVtable.h b/lib/CodeGen/CGVtable.h index 9620e42aab..7ad42b59fb 100644 --- a/lib/CodeGen/CGVtable.h +++ b/lib/CodeGen/CGVtable.h @@ -57,8 +57,9 @@ public: int64_t getVirtualBaseOffsetIndex(const CXXRecordDecl *RD, const CXXRecordDecl *VBase); - llvm::Constant *getVtable(const CXXRecordDecl *RD, - const CXXRecordDecl *Class=0, uint64_t Offset=0); + llvm::Constant *getVtable(const CXXRecordDecl *RD); + llvm::Constant *getCtorVtable(const CXXRecordDecl *RD, + const CXXRecordDecl *Class, uint64_t Offset); }; } |