diff options
author | Alexey Samsonov <vonosmas@gmail.com> | 2014-08-25 21:58:56 +0000 |
---|---|---|
committer | Alexey Samsonov <vonosmas@gmail.com> | 2014-08-25 21:58:56 +0000 |
commit | 525bf650ccc50b4b574f48875ea0429ec6ed1175 (patch) | |
tree | ca7e49977f3e36dd4611caa35d44b93b12f34cf0 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 1767e115945f9f18f3032433887bb9b231edb5ce (diff) | |
download | bcm5719-llvm-525bf650ccc50b4b574f48875ea0429ec6ed1175.tar.gz bcm5719-llvm-525bf650ccc50b4b574f48875ea0429ec6ed1175.zip |
Pass actual CXXConstructExpr instead of argument iterators
into EmitSynthesizedCXXCopyCtorCall. No functionality change.
llvm-svn: 216410
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index ccdc23b3ccc..9c62631dbba 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -1653,8 +1653,7 @@ public: void EmitSynthesizedCXXCopyCtorCall(const CXXConstructorDecl *D, llvm::Value *This, llvm::Value *Src, - CallExpr::const_arg_iterator ArgBeg, - CallExpr::const_arg_iterator ArgEnd); + const CXXConstructExpr *E); void EmitCXXAggrConstructorCall(const CXXConstructorDecl *D, const ConstantArrayType *ArrayTy, |