aboutsummaryrefslogtreecommitdiff
path: root/gdb/hppa-tdep.c
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>1994-08-19 06:57:06 +0000
committerJeff Law <law@redhat.com>1994-08-19 06:57:06 +0000
commit4cbc4bf15191348717051e815084593a3b623261 (patch)
treeddd48fb15dab97210560dd6a3228ce16a41870c9 /gdb/hppa-tdep.c
parentef4b379aabdb863aa520a9d66ec4d823e918ab1f (diff)
downloadgdb-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.c2
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
{