From e5718bee33bb8dfe9c866934941caa8c256a7d58 Mon Sep 17 00:00:00 2001 From: Fred Fish Date: Wed, 14 Aug 1996 22:41:34 +0000 Subject: [PATCH] From Blair MacIntyre : * hppa-tdep.c (hppa_fix_call_dummy): Use MSYMBOL_TYPE rather than SYMBOL_TYPE on msymbols. * somsolib.c (som_solib_create_inferior_hook): Ditto. --- gdb/ChangeLog | 5 +++++ gdb/hppa-tdep.c | 2 +- gdb/somsolib.c | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 37f2db0b5b7..35ce3bb266e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ Wed Aug 14 02:03:42 1996 Fred Fish + From Blair MacIntyre : + * hppa-tdep.c (hppa_fix_call_dummy): Use MSYMBOL_TYPE rather + than SYMBOL_TYPE on msymbols. + * somsolib.c (som_solib_create_inferior_hook): Ditto. + * Makefile.in (init.c): Generate with prototypes. * config/pa/tm-hppa.h (frame_saved_pc): Add prototype. diff --git a/gdb/hppa-tdep.c b/gdb/hppa-tdep.c index 77faf25ad72..275c485bd14 100644 --- a/gdb/hppa-tdep.c +++ b/gdb/hppa-tdep.c @@ -1609,7 +1609,7 @@ hppa_fix_call_dummy (dummy, pc, fun, nargs, args, type, gcc_p) { struct unwind_table_entry *u; /* It must be a shared library trampoline. */ - if (SYMBOL_TYPE (stub_symbol) != mst_solib_trampoline) + if (MSYMBOL_TYPE (stub_symbol) != mst_solib_trampoline) continue; /* It must also be an import stub. */ diff --git a/gdb/somsolib.c b/gdb/somsolib.c index c2c88535b7e..b24e6722a63 100644 --- a/gdb/somsolib.c +++ b/gdb/somsolib.c @@ -587,7 +587,7 @@ som_solib_create_inferior_hook() { struct unwind_table_entry *u; /* It must be a shared library trampoline. */ - if (SYMBOL_TYPE (msymbol) != mst_solib_trampoline) + if (MSYMBOL_TYPE (msymbol) != mst_solib_trampoline) continue; /* It must also be an export stub. */ -- 2.30.2