diff options
author | Daniel Jacobowitz <drow@false.org> | 2003-02-20 18:31:14 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2003-02-20 18:31:14 +0000 |
commit | 7134143f534f02e8a283bb1fc0a9f22300c90e8d (patch) | |
tree | 7df28797a4403c1f540ca84d0a1d3214ab06058e /gdb/nlmread.c | |
parent | cf466558d0faa40bd6cc78b7f4e983c5a3ec883b (diff) | |
download | gdb-7134143f534f02e8a283bb1fc0a9f22300c90e8d.zip gdb-7134143f534f02e8a283bb1fc0a9f22300c90e8d.tar.gz gdb-7134143f534f02e8a283bb1fc0a9f22300c90e8d.tar.bz2 |
* coffread.c (coff_symfile_read): Clean up minimal symbols earlier.
* dbxread.c (elfstab_build_psymtabs): Don't call
install_minimal_symbols.
(stabsect_build_psymtabs): Likewise.
* elfread.c (elf_symfile_read): Call install_minimal_symbols
earlier.
* somread.c (som_symfile_read): Call install_minimal_symbols
and do_cleanups earlier.
* nlmread.c (nlm_symfile_read): Likewise.
* mdebugread.c (elfmdebug_build_psymtabs): Call
install_minimal_symbols and make appropriate cleanups.
Diffstat (limited to 'gdb/nlmread.c')
-rw-r--r-- | gdb/nlmread.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gdb/nlmread.c b/gdb/nlmread.c index 089c0f7..10af4c5 100644 --- a/gdb/nlmread.c +++ b/gdb/nlmread.c @@ -191,6 +191,12 @@ nlm_symfile_read (struct objfile *objfile, int mainline) nlm_symtab_read (abfd, offset, objfile); + /* Install any minimal symbols that have been collected as the current + minimal symbols for this objfile. */ + + install_minimal_symbols (objfile); + do_cleanups (back_to); + stabsect_build_psymtabs (objfile, mainline, ".stab", ".stabstr", ".text"); @@ -205,13 +211,6 @@ nlm_symfile_read (struct objfile *objfile, int mainline) /* FIXME: We could locate and read the optional native debugging format here and add the symbols to the minimal symbol table. */ - - /* Install any minimal symbols that have been collected as the current - minimal symbols for this objfile. */ - - install_minimal_symbols (objfile); - - do_cleanups (back_to); } |