From Blair MacIntyre <bm@cs.columbia.edu>:

* hppa-tdep.c (hppa_fix_call_dummy): Use MSYMBOL_TYPE rather
	than SYMBOL_TYPE on msymbols.
	* somsolib.c (som_solib_create_inferior_hook): Ditto.
This commit is contained in:
Fred Fish 1996-08-14 22:41:34 +00:00
parent 81a80f3282
commit e5718bee33
3 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,10 @@
Wed Aug 14 02:03:42 1996 Fred Fish <fnf@rtl.cygnus.com>
From Blair MacIntyre <bm@cs.columbia.edu>:
* 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.

View File

@ -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. */

View File

@ -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. */