diff options
author | Anders Carlsson <andersca@mac.com> | 2010-05-02 23:20:53 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-05-02 23:20:53 +0000 |
commit | 155ed4a23366f4514befb1c9f5f89d16f8b8b6db (patch) | |
tree | 7987a4f3777d892ae1181ab2abfb2eb09f0a8cd3 /lib/CodeGen/CodeGenFunction.h | |
parent | 24eb78e38aba55c507bc3c05c37035a9ab2defa7 (diff) |
Revert my last change and add a 'ForVirtualBase' parameter to EmitCXXConstructorCall instead.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102881 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index f98cbb4306..b8435d39c4 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -815,9 +815,8 @@ public: void EmitDelegateCXXConstructorCall(const CXXConstructorDecl *Ctor, CXXCtorType CtorType, const FunctionArgList &Args); - void EmitCXXConstructorCall(const CXXConstructorDecl *D, - CXXConstructExpr::ConstructionKind ConstructKind, - llvm::Value *This, + void EmitCXXConstructorCall(const CXXConstructorDecl *D, CXXCtorType Type, + bool ForVirtualBase, llvm::Value *This, CallExpr::const_arg_iterator ArgBeg, CallExpr::const_arg_iterator ArgEnd); |