aboutsummaryrefslogtreecommitdiff
path: root/gdb/dbxread.c
diff options
context:
space:
mode:
authorTristan Gingold <gingold@adacore.com>2009-12-07 09:36:44 +0000
committerTristan Gingold <gingold@adacore.com>2009-12-07 09:36:44 +0000
commitde1d8fb992ae375f46792f3d8ef9aadfc5378773 (patch)
treeeca2adcf9aea95361ee512efbd751928ebdf3e6b /gdb/dbxread.c
parente1c9c36ff623edd9db155891939e29a67141899b (diff)
downloadgdb-de1d8fb992ae375f46792f3d8ef9aadfc5378773.zip
gdb-de1d8fb992ae375f46792f3d8ef9aadfc5378773.tar.gz
gdb-de1d8fb992ae375f46792f3d8ef9aadfc5378773.tar.bz2
2009-12-07 Tristan Gingold <gingold@adacore.com>
* dbxread.c (dbx_symfile_read): No need to test mainline to call init_psymbol_list. * xcoffread.c (xcoff_initial_scan): Ditto; * coffread.c (coff_symfile_read): Remove call to init_psymbol_list. * elfread.c (elf_symfile_read): Ditto. * machoread.c (macho_symfile_read): Ditto.
Diffstat (limited to 'gdb/dbxread.c')
-rw-r--r--gdb/dbxread.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/gdb/dbxread.c b/gdb/dbxread.c
index 771483a..a1bd8e0 100644
--- a/gdb/dbxread.c
+++ b/gdb/dbxread.c
@@ -556,10 +556,8 @@ dbx_symfile_read (struct objfile *objfile, int mainline)
if (val < 0)
perror_with_name (objfile->name);
- /* If we are reinitializing, or if we have never loaded syms yet, init */
- if (mainline
- || (objfile->global_psymbols.size == 0
- && objfile->static_psymbols.size == 0))
+ /* Size the symbol table. */
+ if (objfile->global_psymbols.size == 0 && objfile->static_psymbols.size == 0)
init_psymbol_list (objfile, DBX_SYMCOUNT (objfile));
symbol_size = DBX_SYMBOL_SIZE (objfile);