2006-02-19 Randolph Chung <tausq@debian.org>
authorRandolph Chung <tausq@debian.org>
Sun, 19 Feb 2006 07:21:26 +0000 (07:21 +0000)
committerRandolph Chung <tausq@debian.org>
Sun, 19 Feb 2006 07:21:26 +0000 (07:21 +0000)
* hppa-tdep.c (hppa_in_solib_call_trampoline): Only use if no
unwind entry.

gdb/ChangeLog
gdb/hppa-tdep.c

index 52c376c..52f2d50 100644 (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
index 425a6e8..6a3ae47 100644 (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)