aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>1994-06-03 05:21:30 +0000
committerJeff Law <law@redhat.com>1994-06-03 05:21:30 +0000
commit36af5ec640e064c7139b3027961ea2bdf22b698f (patch)
tree0f441c8bc0397435a1945e2ca3b1ff100e082e16
parent35f8a588988a96fc9f445c0d7c5d5c78260ca57f (diff)
downloadgdb-36af5ec640e064c7139b3027961ea2bdf22b698f.zip
gdb-36af5ec640e064c7139b3027961ea2bdf22b698f.tar.gz
gdb-36af5ec640e064c7139b3027961ea2bdf22b698f.tar.bz2
* hppa-tdep.c (skip_trampoline_code): Fix typo.
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/hppa-tdep.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 45c1c24..e1ca801 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -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.
diff --git a/gdb/hppa-tdep.c b/gdb/hppa-tdep.c
index 55f01e8..6a0b7d8 100644
--- a/gdb/hppa-tdep.c
+++ b/gdb/hppa-tdep.c
@@ -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
{