aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CodeGenFunction.h
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2009-08-06 23:48:32 +0000
committerMike Stump <mrs@apple.com>2009-08-06 23:48:32 +0000
commit02cf1e264719b4dada4377cc8a43888cb66f8815 (patch)
tree995c89149da7ef815757836cea5e58327f79fe1c /lib/CodeGen/CodeGenFunction.h
parent9889652dbc10060cd604861ed2e5bc6719f845b0 (diff)
Add support for vcall generation for vtables for virtual bases. WIP.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@78357 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r--lib/CodeGen/CodeGenFunction.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h
index fe52e99662..63632f5f40 100644
--- a/lib/CodeGen/CodeGenFunction.h
+++ b/lib/CodeGen/CodeGenFunction.h
@@ -363,7 +363,8 @@ public:
const CXXRecordDecl *Class,
llvm::Constant *rtti,
std::vector<llvm::Constant *> &methods,
- bool isPrimary = false);
+ bool isPrimary = false,
+ bool ForVirtualBase = false);
llvm::Value *GenerateVtable(const CXXRecordDecl *RD);
void EmitCtorPrologue(const CXXConstructorDecl *CD);