diff options
author | John McCall <rjmccall@apple.com> | 2011-03-11 20:59:21 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2011-03-11 20:59:21 +0000 |
commit | 413ebdb1af6fb0d81845b61254daf02ba0449afd (patch) | |
tree | 519acbf01d04c6673825029eaead650e39c512fc /lib/CodeGen/CGVTables.cpp | |
parent | f4f7cb814f8537606754b9eb8848094196e73214 (diff) |
Use a slightly more semantic interface for emitting call arguments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@127494 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGVTables.cpp')
-rw-r--r-- | lib/CodeGen/CGVTables.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/CodeGen/CGVTables.cpp b/lib/CodeGen/CGVTables.cpp index 47f421d3f6..e59ff02de2 100644 --- a/lib/CodeGen/CGVTables.cpp +++ b/lib/CodeGen/CGVTables.cpp @@ -2613,11 +2613,8 @@ void CodeGenFunction::GenerateThunk(llvm::Function *Fn, // Add the rest of the parameters. for (FunctionDecl::param_const_iterator I = MD->param_begin(), E = MD->param_end(); I != E; ++I) { - ParmVarDecl *Param = *I; - QualType ArgType = Param->getType(); - RValue Arg = EmitDelegateCallArg(Param); - - CallArgs.push_back(std::make_pair(Arg, ArgType)); + ParmVarDecl *param = *I; + EmitDelegateCallArg(CallArgs, param); } // Get our callee. |