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/CodeGenModule.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/CodeGenModule.h')
-rw-r--r-- | lib/CodeGen/CodeGenModule.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenModule.h b/lib/CodeGen/CodeGenModule.h index 6c433d9d66..990706d11f 100644 --- a/lib/CodeGen/CodeGenModule.h +++ b/lib/CodeGen/CodeGenModule.h @@ -253,7 +253,9 @@ public: const llvm::Type *Ty = 0); /// GenerateVtable - Generate the vtable for the given type. - llvm::Constant *GenerateVtable(const CXXRecordDecl *RD); + llvm::Constant *GenerateVtable(const CXXRecordDecl *RD, + const CXXRecordDecl *Class=0, + uint64_t Offset=0); /// GenerateVTT - Generate the VTT for the given type. llvm::Constant *GenerateVTT(const CXXRecordDecl *RD); |