diff --git a/tools/qfcc/include/function.h b/tools/qfcc/include/function.h index 2ef0cb98b..101bcb014 100644 --- a/tools/qfcc/include/function.h +++ b/tools/qfcc/include/function.h @@ -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; diff --git a/tools/qfcc/source/obj_file.c b/tools/qfcc/source/obj_file.c index ac88bc80d..15b6bd75c 100644 --- a/tools/qfcc/source/obj_file.c +++ b/tools/qfcc/source/obj_file.c @@ -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);