diff options
author | Jeff Law <law@redhat.com> | 1994-08-19 06:57:06 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1994-08-19 06:57:06 +0000 |
commit | 4cbc4bf15191348717051e815084593a3b623261 (patch) | |
tree | ddd48fb15dab97210560dd6a3228ce16a41870c9 /gdb | |
parent | ef4b379aabdb863aa520a9d66ec4d823e918ab1f (diff) | |
download | gdb-4cbc4bf15191348717051e815084593a3b623261.zip gdb-4cbc4bf15191348717051e815084593a3b623261.tar.gz gdb-4cbc4bf15191348717051e815084593a3b623261.tar.bz2 |
* hppa-tdep.c (skip_trampoline_code): Revert incorrect change
from June 2, 1994 (what was I thinking?!?). Fix it right this
time.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/hppa-tdep.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c099f95..e471d75 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -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. diff --git a/gdb/hppa-tdep.c b/gdb/hppa-tdep.c index b7e958b..270d54e 100644 --- a/gdb/hppa-tdep.c +++ b/gdb/hppa-tdep.c @@ -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 { |