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.
This commit is contained in:
Elena Zannoni
2001-09-05 02:13:11 +00:00
parent 4961b73108
commit ef96bde82e
6 changed files with 24 additions and 10 deletions

View File

@@ -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);