forked from Imagelibrary/binutils-gdb
2004-06-06 Randolph Chung <tausq@debian.org>
* hppa-hpux-tdep.c (hppa32_hpux_in_solib_call_trampoline) (hppa_hpux_skip_trampoline_code): Don't cache symbol values. * hppa-linux-tdep.c (hppa_linux_in_dyncall): Likewise. * hppa-tdep.c (hppa_symbol_address): New function definition. * hppa-tdep.h (hppa_symbol_address): New function declaration.
This commit is contained in:
@@ -164,21 +164,7 @@ insns_match_pattern (CORE_ADDR pc,
|
||||
static int
|
||||
hppa_linux_in_dyncall (CORE_ADDR pc)
|
||||
{
|
||||
static CORE_ADDR dyncall = 0;
|
||||
|
||||
/* FIXME: if we switch exec files, dyncall should be reinitialized */
|
||||
if (!dyncall)
|
||||
{
|
||||
struct minimal_symbol *minsym;
|
||||
|
||||
minsym = lookup_minimal_symbol ("$$dyncall", NULL, NULL);
|
||||
if (minsym)
|
||||
dyncall = SYMBOL_VALUE_ADDRESS (minsym);
|
||||
else
|
||||
dyncall = -1;
|
||||
}
|
||||
|
||||
return pc == dyncall;
|
||||
return pc == hppa_symbol_address("$$dyncall");
|
||||
}
|
||||
|
||||
/* There are several kinds of "trampolines" that we need to deal with:
|
||||
|
||||
Reference in New Issue
Block a user