diff options
author | Anders Carlsson <andersca@mac.com> | 2009-12-24 19:08:58 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-12-24 19:08:58 +0000 |
commit | 0435ed5875a17c7eb36bae398bdb1375b514f35d (patch) | |
tree | d04144e89dd81755852e48394c343fcc9108d3f9 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 363b151ff77e1ce3ecd1d2e13a2a35aa09b55c47 (diff) | |
download | bcm5719-llvm-0435ed5875a17c7eb36bae398bdb1375b514f35d.tar.gz bcm5719-llvm-0435ed5875a17c7eb36bae398bdb1375b514f35d.zip |
Add a ReturnValueSlot class. Change the argument order in EmitCall to match the other overload better.
llvm-svn: 92136
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index c2e59c01eb2..d28dd47ea57 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -1039,7 +1039,7 @@ public: const CallArgList &Args, const Decl *TargetDecl = 0); - RValue EmitCall(llvm::Value *Callee, QualType FnType, + RValue EmitCall(QualType FnType, llvm::Value *Callee, CallExpr::const_arg_iterator ArgBeg, CallExpr::const_arg_iterator ArgEnd, const Decl *TargetDecl = 0); |