diff options
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 22bb6c3e193..092eddc7a64 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -2516,11 +2516,11 @@ public: bool ForceColumnInfo = false) { if (CallArgTypeInfo) { EmitCallArgs(Args, CallArgTypeInfo->isVariadic(), - CallArgTypeInfo->arg_type_begin(), - CallArgTypeInfo->arg_type_end(), ArgBeg, ArgEnd, + CallArgTypeInfo->param_type_begin(), + CallArgTypeInfo->param_type_end(), ArgBeg, ArgEnd, ForceColumnInfo); } else { - // T::arg_type_iterator might not have a default ctor. + // T::param_type_iterator might not have a default ctor. const QualType *NoIter = 0; EmitCallArgs(Args, /*AllowExtraArguments=*/true, NoIter, NoIter, ArgBeg, ArgEnd, ForceColumnInfo); |