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/hppa-tdep.c | |
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/hppa-tdep.c')
-rw-r--r-- | gdb/hppa-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |