* hppa-tdep.c (skip_trampoline_code): Revert incorrect change

from June 2, 1994 (what was I thinking?!?).  Fix it right this
	time.
This commit is contained in:
Jeff Law 1994-08-19 06:57:06 +00:00
parent ef4b379aab
commit 4cbc4bf151
2 changed files with 7 additions and 1 deletions

View File

@ -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.

View File

@ -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
{