diff options
author | Tom Tromey <tom@tromey.com> | 2020-11-01 09:51:13 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2020-11-01 09:51:13 -0700 |
commit | 525454d654a88a40148e8d3558c69179def61fbf (patch) | |
tree | 14ebc497d8677298ef080ab6fe658da73dbe3ef8 /gdb/dbxread.c | |
parent | d77c9224555de402eeda3a85d5407a4ef5d964a5 (diff) | |
download | gdb-525454d654a88a40148e8d3558c69179def61fbf.zip gdb-525454d654a88a40148e8d3558c69179def61fbf.tar.gz gdb-525454d654a88a40148e8d3558c69179def61fbf.tar.bz2 |
Remove init_psymbol_list
init_psymbol_list is now empty, and so this removes it.
gdb/ChangeLog
2020-11-01 Tom Tromey <tom@tromey.com>
* dbxread.c (dbx_symfile_read): Update.
* dwarf2/read.c (dwarf2_build_psymtabs): Update.
* xcoffread.c (xcoff_initial_scan): Update.
* psympriv.h (init_psymbol_list): Don't declare.
* psymtab.c (init_psymbol_list): Remove.
Diffstat (limited to 'gdb/dbxread.c')
-rw-r--r-- | gdb/dbxread.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gdb/dbxread.c b/gdb/dbxread.c index 4665cdd..4e189a7 100644 --- a/gdb/dbxread.c +++ b/gdb/dbxread.c @@ -535,9 +535,6 @@ dbx_symfile_read (struct objfile *objfile, symfile_add_flags symfile_flags) if (val < 0) perror_with_name (objfile_name (objfile)); - /* Size the symbol table. */ - init_psymbol_list (objfile, DBX_SYMCOUNT (objfile)); - symbol_size = DBX_SYMBOL_SIZE (objfile); symbol_table_offset = DBX_SYMTAB_OFFSET (objfile); |