* hppa-tdep.c (skip_trampoline_code): Fix typo.

This commit is contained in:
Jeff Law 1994-06-03 05:21:30 +00:00
parent 35f8a58898
commit 36af5ec640
2 changed files with 5 additions and 1 deletions

View File

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

View File

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