remove a mostly unused field

This commit is contained in:
Bill Currie 2004-02-21 05:58:01 +00:00
parent 14e8bfe94b
commit f1c9a8d24b
2 changed files with 0 additions and 2 deletions

View file

@ -42,7 +42,6 @@ typedef struct function_s {
int function_num;
string_t s_file; // source file with definition
string_t s_name;
int file_line;
struct def_s *def;
struct scope_s *scope;
struct reloc_s *refs;

View file

@ -573,7 +573,6 @@ qfo_to_progs (qfo_t *qfo, pr_info_t *pr)
pf->function_num = i + 1;
pf->s_file = qf->file;
pf->s_name = qf->name;
pf->file_line = qf->line;
pf->def = pr->scope->head + qf->def;
pf->scope = new_scope (sc_params, init_space (qf->locals_size, 0),
pr->scope);