mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-28 10:00:51 +00:00
Replace header_files global by per-objfile field.
* gdb-stabs.h (struct dbx_symfile_info): Add fields header_files, n_header_files, n_allocated_header_files. * stabsread.h (header_files, n_header_files, n_allocated_header_files): Replace externs by macros HEADER_FILES, N_HEADER_FILES, and N_ALLOCATED_HEADER_FILES. * dbxread.c (dbx_symfile_finish): Free HEADER_FILES. (free_header_files, init_header-files): Don't free/init headerfiles. (various functions): Use macros instead of header_files globals. * stabsread.c (various functions): Likewise.
This commit is contained in:
@@ -344,7 +344,7 @@ Invalid symbol data: type number (%d,%d) out of range at symtab pos %d.",
|
||||
{
|
||||
real_filenum = this_object_header_files[filenum];
|
||||
|
||||
if (real_filenum >= n_header_files)
|
||||
if (real_filenum >= N_HEADER_FILES (current_objfile))
|
||||
{
|
||||
struct type *temp_type;
|
||||
struct type **temp_type_p;
|
||||
@@ -358,7 +358,7 @@ Invalid symbol data: type number (%d,%d) out of range at symtab pos %d.",
|
||||
return temp_type_p;
|
||||
}
|
||||
|
||||
f = &header_files[real_filenum];
|
||||
f = HEADER_FILES (current_objfile) + real_filenum;
|
||||
|
||||
f_orig_length = f->length;
|
||||
if (index >= f_orig_length)
|
||||
|
||||
Reference in New Issue
Block a user