Set VT_LVAL_xxx flags for function arguments in gfunc_prolog (Daniel Glöckner)

This commit is contained in:
Daniel Glöckner
2008-08-20 01:44:12 +02:00
committed by grischka
parent 8f7e3f325d
commit 2c657f6608
4 changed files with 4 additions and 4 deletions

View File

@ -449,7 +449,7 @@ void gfunc_prolog(int t)
while ((sym = sym->next) != NULL) {
u = sym->t;
sym_push(sym->v & ~SYM_FIELD, u,
VT_LOCAL | VT_LVAL, addr);
VT_LOCAL | lvalue_type(sym->type.t), addr);
addr++;
}
}