From 1da02d627fcd030c14094473010f51e3d1fc3858 Mon Sep 17 00:00:00 2001 From: Elena Zannoni Date: Thu, 16 Oct 2003 16:35:27 +0000 Subject: [PATCH] 2003-10-16 Elena Zannoni * minsyms.c (lookup_minimal_symbol_solib_trampoline): Remove second parameter, which is always null. Remove SOFUN_ADDRESS_MAYBE_MISSING ifdeffed code. * symtab.h (lookup_minimal_symbol_solib_trampoline): Update accordingly. * somsolib.c (som_solib_create_inferior_hook, som_solib_desire_dynamic_linker_symbols): Update callers. * hppa-tdep.c (hppa_fix_call_dummy): Ditto. --- gdb/ChangeLog | 10 ++++++++++ gdb/hppa-tdep.c | 2 +- gdb/minsyms.c | 10 ---------- gdb/somsolib.c | 4 +--- gdb/symtab.h | 1 - 5 files changed, 12 insertions(+), 15 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4767e2bf75..3834c5481e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,13 @@ +2003-10-16 Elena Zannoni + + * minsyms.c (lookup_minimal_symbol_solib_trampoline): Remove + second parameter, which is always null. Remove + SOFUN_ADDRESS_MAYBE_MISSING ifdeffed code. + * symtab.h (lookup_minimal_symbol_solib_trampoline): Update + accordingly. + * somsolib.c (som_solib_create_inferior_hook, + som_solib_desire_dynamic_linker_symbols): Update callers. + * hppa-tdep.c (hppa_fix_call_dummy): Ditto. 2003-10-16 Kei Sakamoto diff --git a/gdb/hppa-tdep.c b/gdb/hppa-tdep.c index e5a18909f1..c168b5d61c 100644 --- a/gdb/hppa-tdep.c +++ b/gdb/hppa-tdep.c @@ -2376,7 +2376,7 @@ hppa_fix_call_dummy (char *dummy, CORE_ADDR pc, CORE_ADDR fun, int nargs, { stub_symbol = lookup_minimal_symbol_solib_trampoline - (DEPRECATED_SYMBOL_NAME (funsymbol), NULL, objfile); + (DEPRECATED_SYMBOL_NAME (funsymbol), objfile); if (!stub_symbol) stub_symbol = lookup_minimal_symbol (DEPRECATED_SYMBOL_NAME (funsymbol), diff --git a/gdb/minsyms.c b/gdb/minsyms.c index e4fd60d0b1..d93a697e14 100644 --- a/gdb/minsyms.c +++ b/gdb/minsyms.c @@ -346,7 +346,6 @@ lookup_minimal_symbol_text (const char *name, const char *sfile, struct minimal_symbol * lookup_minimal_symbol_solib_trampoline (const char *name, - const char *sfile, struct objfile *objf) { struct objfile *objfile; @@ -355,15 +354,6 @@ lookup_minimal_symbol_solib_trampoline (const char *name, unsigned int hash = msymbol_hash (name) % MINIMAL_SYMBOL_HASH_SIZE; -#ifdef SOFUN_ADDRESS_MAYBE_MISSING - if (sfile != NULL) - { - char *p = strrchr (sfile, '/'); - if (p != NULL) - sfile = p + 1; - } -#endif - for (objfile = object_files; objfile != NULL && found_symbol == NULL; objfile = objfile->next) diff --git a/gdb/somsolib.c b/gdb/somsolib.c index ed54ad089a..e013fd88d3 100644 --- a/gdb/somsolib.c +++ b/gdb/somsolib.c @@ -937,7 +937,7 @@ som_solib_create_inferior_hook (void) /* What a crock. */ msymbol2 = lookup_minimal_symbol_solib_trampoline (DEPRECATED_SYMBOL_NAME (msymbol), - NULL, objfile); + objfile); /* Found a symbol with the right name. */ if (msymbol2) { @@ -1225,7 +1225,6 @@ som_solib_desire_dynamic_linker_symbols (void) } dld_msymbol = lookup_minimal_symbol_solib_trampoline ("shl_load", - NULL, objfile); if (dld_msymbol != NULL) { @@ -1265,7 +1264,6 @@ som_solib_desire_dynamic_linker_symbols (void) } dld_msymbol = lookup_minimal_symbol_solib_trampoline ("shl_unload", - NULL, objfile); if (dld_msymbol != NULL) { diff --git a/gdb/symtab.h b/gdb/symtab.h index da30125474..3723559cbc 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -1168,7 +1168,6 @@ extern struct minimal_symbol *lookup_minimal_symbol_text (const char *, struct objfile *); struct minimal_symbol *lookup_minimal_symbol_solib_trampoline (const char *, - const char *, struct objfile *); -- 2.11.0