2006-02-19 Randolph Chung <tausq@debian.org>

* hppa-tdep.c (hppa_in_solib_call_trampoline): Only use if no
	unwind entry.
This commit is contained in:
Randolph Chung 2006-02-19 07:21:26 +00:00
parent ee257c9d06
commit 806e23c026
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-02-19 Randolph Chung <tausq@debian.org>
* hppa-tdep.c (hppa_in_solib_call_trampoline): Only use if no
unwind entry.
2006-02-16 Fred Fish <fnf@specifix.com>
* eval.c (evaluate_subexp_standard): For OP_TYPE, return

View File

@ -2886,7 +2886,7 @@ hppa_in_solib_call_trampoline (CORE_ADDR pc, char *name)
quite slow, so bail out if we do have an unwind entry. */
u = find_unwind_entry (pc);
if (u == NULL)
if (u != NULL)
return 0;
return (hppa_match_insns_relaxed (pc, hppa_import_stub, insn)