fix not allocating enough memory for passing args

fixes a bug introduced in c62db5721c
This commit is contained in:
Andrew Kelley 2017-03-10 02:50:53 -05:00
parent cd31f875a6
commit c91dbdb27c

View File

@ -8199,7 +8199,7 @@ static TypeTableEntry *ir_analyze_fn_call(IrAnalyze *ira, IrInstructionCall *cal
assert(fn_entry);
// Count the arguments of the function type id we are creating
size_t new_fn_arg_count = 0;
size_t new_fn_arg_count = first_arg_1_or_0;
for (size_t call_i = 0; call_i < call_instruction->arg_count; call_i += 1) {
IrInstruction *arg = call_instruction->args[call_i]->other;
if (type_is_invalid(arg->value.type))