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:
parent
4961b73108
commit
ef96bde82e
6 changed files with 24 additions and 10 deletions
|
@ -869,8 +869,9 @@ dwarf2_build_psymtabs (struct objfile *objfile, int mainline)
|
|||
dwarf_line_offset,
|
||||
dwarf_line_size);
|
||||
|
||||
if (mainline || objfile->global_psymbols.size == 0 ||
|
||||
objfile->static_psymbols.size == 0)
|
||||
if (mainline
|
||||
|| (objfile->global_psymbols.size == 0
|
||||
&& objfile->static_psymbols.size == 0))
|
||||
{
|
||||
init_psymbol_list (objfile, 1024);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue