diff options
author | Anders Carlsson <andersca@mac.com> | 2010-05-02 23:01:10 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-05-02 23:01:10 +0000 |
commit | 24eb78e38aba55c507bc3c05c37035a9ab2defa7 (patch) | |
tree | e4875259a1addfff810186f26e75ba8f1eac90d8 /lib/CodeGen/CodeGenFunction.h | |
parent | 72e96fd181b19b8d01144a685cda6e955584c7ea (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.h | 3 |
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); |