mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 18:14:13 +08:00
gdb/
* solib.c (info_sharedlibrary_command): Replace objfile_has_partial_symbols and objfile_has_full_symbols calls by objfile_has_symbols.
This commit is contained in:
parent
9a753de0ad
commit
e0ae424066
@ -1,3 +1,10 @@
|
||||
2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||
Tristan Gingold <gingold@adacore.com>
|
||||
|
||||
* solib.c (info_sharedlibrary_command): Replace
|
||||
objfile_has_partial_symbols and objfile_has_full_symbols calls by
|
||||
objfile_has_symbols.
|
||||
|
||||
2010-01-10 Joel Brobecker <brobecker@adacore.com>
|
||||
|
||||
* NEWS: Document the improvements made to the mips-irix port.
|
||||
|
@ -863,8 +863,7 @@ info_sharedlibrary_command (char *pattern, int from_tty)
|
||||
|
||||
if (! ui_out_is_mi_like_p (interp_ui_out (top_level_interpreter ()))
|
||||
&& so->symbols_loaded
|
||||
&& !objfile_has_partial_symbols (so->objfile)
|
||||
&& !objfile_has_full_symbols (so->objfile))
|
||||
&& !objfile_has_symbols (so->objfile))
|
||||
{
|
||||
so_missing_debug_info = 1;
|
||||
ui_out_field_string (uiout, "syms-read", "Yes (*)");
|
||||
|
Loading…
Reference in New Issue
Block a user