* hppa-tdep.c (skip_trampoline_code): Fix typo.
authorJeff Law <law@redhat.com>
Fri, 3 Jun 1994 05:21:30 +0000 (05:21 +0000)
committerJeff Law <law@redhat.com>
Fri, 3 Jun 1994 05:21:30 +0000 (05:21 +0000)
gdb/ChangeLog
gdb/hppa-tdep.c

index 45c1c24..e1ca801 100644 (file)
@@ -1,3 +1,7 @@
+Thu Jun  2 23:19:10 1994  Jeff Law  (law@snake.cs.utah.edu)
+
+       * hppa-tdep.c (skip_trampoline_code): Fix typo.
+
 Thu Jun  2 18:09:59 1994  Per Bothner  (bothner@kalessin.cygnus.com)
 
        * ch-valprint.c (chill_val_print_array_elements):  New function.
index 55f01e8..6a0b7d8 100644 (file)
@@ -1618,7 +1618,7 @@ skip_trampoline_code (pc, name)
        {
          /* Yup.  See if the previous instruction loaded
             a value into %r1.  If so compute and return the jump address.  */
-         if ((prev_inst & 0xffe00000) == 0x20202000)
+         if ((prev_inst & 0xffe0e000) == 0x20202000)
            return (extract_21 (prev_inst) + extract_17 (curr_inst)) & ~0x3;
          else
            {