* hppa-tdep.c (skip_trampoline_code): Fix typo.
This commit is contained in:
parent
35f8a58898
commit
36af5ec640
2 changed files with 5 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue