diff options
author | Jim Blandy <jimb@codesourcery.com> | 2003-02-03 20:39:41 +0000 |
---|---|---|
committer | Jim Blandy <jimb@codesourcery.com> | 2003-02-03 20:39:41 +0000 |
commit | 158314526c237246cc19dd4a22fd3820694cb6df (patch) | |
tree | 408d89852e5fa04a30a1d8b29843b3466f0076c1 /gdb/minsyms.c | |
parent | ffc65945ba8548a7668003732ba1486d0aa40a81 (diff) | |
download | gdb-158314526c237246cc19dd4a22fd3820694cb6df.zip gdb-158314526c237246cc19dd4a22fd3820694cb6df.tar.gz gdb-158314526c237246cc19dd4a22fd3820694cb6df.tar.bz2 |
Use a single, consistent representation for an empty minimal
symbol table in an objfile.
* objfiles.c (terminate_minimal_symbol_table): New function.
(allocate_objfile): Call it.
* objfiles.h (terminate_minimal_symbol_table): New declaration.
(ALL_MSYMBOLS): No need to test whether (objfile)->msymbols is
non-NULL.
* minsyms.c (lookup_minimal_symbol_by_pc_section): To see whether
objfile has minimal symbols, compare minimal_symbol_count to zero,
instead of comparing msymbols with NULL.
* objfiles.c (have_minimal_symbols): Same.
* solib-sunos.c (solib_add_common_symbols): Call
terminate_minimal_symbol_table.
* symfile.c (reread_symbols): Same.
Diffstat (limited to 'gdb/minsyms.c')
-rw-r--r-- | gdb/minsyms.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/minsyms.c b/gdb/minsyms.c index 9823c87..92dfa82 100644 --- a/gdb/minsyms.c +++ b/gdb/minsyms.c @@ -411,8 +411,9 @@ lookup_minimal_symbol_by_pc_section (CORE_ADDR pc, asection *section) "null symbol". If there are no real symbols, then there is no minimal symbol table at all. */ - if ((msymbol = objfile->msymbols) != NULL) + if (objfile->minimal_symbol_count > 0) { + msymbol = objfile->msymbols; lo = 0; hi = objfile->minimal_symbol_count - 1; |