From 4cbc4bf15191348717051e815084593a3b623261 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Fri, 19 Aug 1994 06:57:06 +0000 Subject: [PATCH] * hppa-tdep.c (skip_trampoline_code): Revert incorrect change from June 2, 1994 (what was I thinking?!?). Fix it right this time. --- gdb/ChangeLog | 6 ++++++ gdb/hppa-tdep.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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 { -- 2.7.4