* hppa-tdep.c (skip_trampoline_code): Revert incorrect change
authorJeff Law <law@redhat.com>
Fri, 19 Aug 1994 06:57:06 +0000 (06:57 +0000)
committerJeff Law <law@redhat.com>
Fri, 19 Aug 1994 06:57:06 +0000 (06:57 +0000)
from June 2, 1994 (what was I thinking?!?).  Fix it right this
time.

gdb/ChangeLog
gdb/hppa-tdep.c

index c099f95c5c34164227faf8c7675f0d49e7677338..e471d75a147323d81a68fc3e999a5dce63b792a5 100644 (file)
@@ -1,3 +1,9 @@
+Fri Aug 19 00:40:55 1994  Jeff Law  (law@snake.cs.utah.edu)
+
+       * hppa-tdep.c (skip_trampoline_code): Revert incorrect change
+       from June 2, 1994 (what was I thinking?!?).  Fix it right this
+       time.
+
 Thu Aug 18 17:01:35 1994  J.T. Conklin  (jtc@rtl.cygnus.com)
 
        * nlm/i386.c, nlm/i386.h: New files that contain i386 specific code.
index b7e958b919e85bcad3750edcbcd7de0aabab4021..270d54e73fe263106f11712125b90b591b857826 100644 (file)
@@ -1630,7 +1630,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 & 0xffe0e000) == 0x20202000)
+         if ((prev_inst & 0xffe00000) == 0x20200000)
            return (extract_21 (prev_inst) + extract_17 (curr_inst)) & ~0x3;
          else
            {