diff options
author | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2003-10-16 16:35:27 +0000 |
---|---|---|
committer | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2003-10-16 16:35:27 +0000 |
commit | 40324f1b404edf73cafbf8c6c7deb017a4623ba8 (patch) | |
tree | 6777ef658a69d69e6c2c58574fcf548f26f02858 /gdb/somsolib.c | |
parent | 7aaa0689cc7af3af91089ae7203f1f783cc45ec8 (diff) | |
download | gdb-40324f1b404edf73cafbf8c6c7deb017a4623ba8.zip gdb-40324f1b404edf73cafbf8c6c7deb017a4623ba8.tar.gz gdb-40324f1b404edf73cafbf8c6c7deb017a4623ba8.tar.bz2 |
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.
Diffstat (limited to 'gdb/somsolib.c')
-rw-r--r-- | gdb/somsolib.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/somsolib.c b/gdb/somsolib.c index ed54ad0..e013fd8 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) { |