2003-10-16 Elena Zannoni <ezannoni@redhat.com>

* 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.
This commit is contained in:
Elena Zannoni 2003-10-16 16:35:27 +00:00
parent 7aaa0689cc
commit 40324f1b40
5 changed files with 12 additions and 15 deletions

View file

@ -1,3 +1,13 @@
2003-10-16 Elena Zannoni <ezannoni@redhat.com>
* 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 <sakamoto.kei@renesas.com>

View file

@ -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),

View file

@ -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)

View file

@ -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)
{

View file

@ -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
*);