Fix incorrect encoding of local defs

This commit is contained in:
Bill Currie 2020-02-25 00:11:01 +09:00
parent 3720956d88
commit c51c9edd9d
1 changed files with 0 additions and 1 deletions

View File

@ -1178,7 +1178,6 @@ qfo_to_sym (qfo_t *qfo, int *size)
aux->local_defs = ld - locals;
for (j = 0; j < num_locals; j++, def++, ld++) {
ld->type = get_def_type (qfo, def->type);
ld->type = def->type;
ld->ofs = def->offset;
ld->name = def->name;
ld->type_encoding = def->type;