Fix GCC build due to shadowing

llvm-svn: 242826
This commit is contained in:
David Blaikie 2015-07-21 18:59:10 +00:00
parent f05779e21c
commit fd7c2198e4
1 changed files with 2 additions and 2 deletions

View File

@ -3006,8 +3006,8 @@ public:
"Extra arguments in non-variadic function!");
// If we still have any arguments, emit them using the type of the argument.
for (auto *Arg : llvm::make_range(Arg, ArgRange.end()))
ArgTypes.push_back(getVarArgType(Arg));
for (auto *A : llvm::make_range(Arg, ArgRange.end()))
ArgTypes.push_back(getVarArgType(A));
EmitCallArgs(Args, ArgTypes, ArgRange, CalleeDecl, ParamsToSkip);
}