use the correct STORE_ op for function arges, rather than STORE_V. Should

speed up progs in general.
This commit is contained in:
Bill Currie 2001-06-04 03:57:15 +00:00
parent 275e74161b
commit 4aa47d728a

View file

@ -181,7 +181,7 @@ PR_ParseFunctionCall (def_t *func)
// a vector copy will copy everything
def_parms[arg].type = t->parm_types[arg];
op = PR_Opcode_Find ("=", 5, &def_vector, &def_vector, &def_vector);
op = PR_Opcode_Find ("=", 5, e, e, e);
PR_Statement (op, e, &def_parms[arg]);
arg++;
} while (PR_Check (tt_punct, ","));