aboutsummaryrefslogtreecommitdiff
path: root/gdb/dbxread.c
diff options
context:
space:
mode:
authorElena Zannoni <ezannoni@kwikemart.cygnus.com>2001-09-05 02:13:11 +0000
committerElena Zannoni <ezannoni@kwikemart.cygnus.com>2001-09-05 02:13:11 +0000
commitef96bde82e147421678d9f5390f5d3632d314d2c (patch)
treeb04a155ef7510c213671fa8ef90f11bc212e49dc /gdb/dbxread.c
parent4961b73108c1d1783815b0e5fd03b9fc0e4fe04b (diff)
downloadfsf-binutils-gdb-ef96bde82e147421678d9f5390f5d3632d314d2c.zip
fsf-binutils-gdb-ef96bde82e147421678d9f5390f5d3632d314d2c.tar.gz
fsf-binutils-gdb-ef96bde82e147421678d9f5390f5d3632d314d2c.tar.bz2
2001-09-04 Elena Zannoni <ezannoni@redhat.com>
From Daniel Jacobowitz <drow@mvista.com> * dbxread.c (dbx_symfile_read): Only reinitialize the psymbol list if mainline or if both static and global lists are empty. * dwarf2read.c (dwarf2_build_psymtabs): Likewise. * dwarfread.c (dwarf_build_psymtabs): Likewise. * xcoffread.c (xcoff_initial_scan): Likewise. * os9kread.c (os9k_symfile_read): Likewise.
Diffstat (limited to 'gdb/dbxread.c')
-rw-r--r--gdb/dbxread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/dbxread.c b/gdb/dbxread.c
index f1382e7..ba60fe1 100644
--- a/gdb/dbxread.c
+++ b/gdb/dbxread.c
@@ -582,8 +582,8 @@ dbx_symfile_read (struct objfile *objfile, int mainline)
/* 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)
+ || (objfile->global_psymbols.size == 0
+ && objfile->static_psymbols.size == 0))
init_psymbol_list (objfile, DBX_SYMCOUNT (objfile));
symbol_size = DBX_SYMBOL_SIZE (objfile);