diff options
author | Tom Tromey <tom@tromey.com> | 2018-05-10 16:23:45 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-01-10 07:08:10 -0700 |
commit | 939652a515a10654b16b97e7e2ea39c013714850 (patch) | |
tree | 1a5d876a335a92854a0c2cc851d7b1d9735acd1e /gdb/mdebugread.c | |
parent | Remove some unneeded psymtab initializations (diff) | |
download | binutils-gdb-939652a515a10654b16b97e7e2ea39c013714850.tar.gz binutils-gdb-939652a515a10654b16b97e7e2ea39c013714850.tar.bz2 binutils-gdb-939652a515a10654b16b97e7e2ea39c013714850.zip |
Remove parameters from start_psymtab_common
start_psymtab_common takes references to the global_psymbols and
static_psymbols vectors, but it also has an objfile parameter. This
is redundant, so this patch simplifies the function by removing those
reference parameters.
gdb/ChangeLog
2019-01-10 Tom Tromey <tom@tromey.com>
* xcoffread.c (xcoff_start_psymtab): Remove global_psymbols and
static_psymbols parameters.
(scan_xcoff_symtab): Update.
* psymtab.c (start_psymtab_common): Remove global_psymbols and
static_psymbols parameters.
* psympriv.h (start_psymtab_common): Update.
* mdebugread.c (parse_partial_symbols): Update.
* dwarf2read.c (create_partial_symtab): Update.
* dbxread.c (read_dbx_symtab): Update.
(start_psymtab): Remove global_psymbols and static_psymbols
parameters.
Diffstat (limited to 'gdb/mdebugread.c')
-rw-r--r-- | gdb/mdebugread.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/mdebugread.c b/gdb/mdebugread.c index 0583ce2f3ac..766a6d15318 100644 --- a/gdb/mdebugread.c +++ b/gdb/mdebugread.c @@ -2619,9 +2619,7 @@ parse_partial_symbols (minimal_symbol_reader &reader, textlow = 0; pst = start_psymtab_common (objfile, fdr_name (fh), - textlow, - objfile->global_psymbols, - objfile->static_psymbols); + textlow); pst->read_symtab_private = XOBNEW (&objfile->objfile_obstack, symloc); memset (pst->read_symtab_private, 0, sizeof (struct symloc)); |