diff options
author | Mike Stump <mrs@apple.com> | 2009-07-31 18:25:34 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-07-31 18:25:34 +0000 |
commit | f121677b6bbbf4e4a51ee7a1120b77adf187bad4 (patch) | |
tree | 152d7af9683edcc44068f0817ca9b5fceb7dc171 /lib/CodeGen/CodeGenFunction.h | |
parent | 29852b68b677bfcbcb51fb2b3b7b756665376b4f (diff) |
Add code to setup the vtable pointer in the constructor. Work in progress.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77699 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 4f8a14af14..5661343c13 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -358,6 +358,8 @@ public: /// legal to call this function even if there is no current insertion point. void FinishFunction(SourceLocation EndLoc=SourceLocation()); + llvm::Value *GenerateVtable(const CXXRecordDecl *RD); + void EmitCtorPrologue(const CXXConstructorDecl *CD); /// EmitDtorEpilogue - Emit all code that comes at the end of class's |