mirror of
https://github.com/mirror/tinycc.git
synced 2026-08-18 11:03:27 +08:00
remove VT_LVAL_BYTE etc.
For some reason there was no point for that anymore.
This commit is contained in:
@@ -1964,7 +1964,7 @@ void gfunc_prolog(Sym *func_sym)
|
||||
/* define parameters */
|
||||
while ((sym = sym->next) != NULL) {
|
||||
type = &sym->type;
|
||||
sym_push(sym->v & ~SYM_FIELD, type, VT_LOCAL | lvalue_type(type->t), addr);
|
||||
sym_push(sym->v & ~SYM_FIELD, type, VT_LOCAL | VT_LVAL, addr);
|
||||
size = type_size(type, &align);
|
||||
size = (size + 3) & ~3;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user