aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CodeGenFunction.h
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@mac.com>2010-05-02 23:01:10 +0000
committerAnders Carlsson <andersca@mac.com>2010-05-02 23:01:10 +0000
commit24eb78e38aba55c507bc3c05c37035a9ab2defa7 (patch)
treee4875259a1addfff810186f26e75ba8f1eac90d8 /lib/CodeGen/CodeGenFunction.h
parent72e96fd181b19b8d01144a685cda6e955584c7ea (diff)
Pass the construction kind down to EmitCXXConstructorCall.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102880 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 5ecc9a20c3..f98cbb4306 100644
--- a/lib/CodeGen/CodeGenFunction.h
+++ b/lib/CodeGen/CodeGenFunction.h
@@ -815,7 +815,8 @@ public:
void EmitDelegateCXXConstructorCall(const CXXConstructorDecl *Ctor,
CXXCtorType CtorType,
const FunctionArgList &Args);
- void EmitCXXConstructorCall(const CXXConstructorDecl *D, CXXCtorType Type,
+ void EmitCXXConstructorCall(const CXXConstructorDecl *D,
+ CXXConstructExpr::ConstructionKind ConstructKind,
llvm::Value *This,
CallExpr::const_arg_iterator ArgBeg,
CallExpr::const_arg_iterator ArgEnd);