* h8300-tdep.c (examine_prologue): Fix call to read_memory_unsigned_integer.

This commit is contained in:
David Edelsohn 1993-07-04 22:07:17 +00:00
parent ce51bde687
commit b1d0b1614b
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Sun Jul 4 15:04:47 1993 Doug Evans (dje@cygnus.com)
* h8300-tdep.c (examine_prologue): Fix call to
read_memory_unsigned_integer.
Fri Jul 2 18:22:54 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* config/mips/{x,n}m-irix{3,4}.h: Make some definitions here

View File

@ -303,8 +303,7 @@ examine_prologue (ip, limit, after_prolog_fp, fsr, fi)
if (have_fp)
/* We keep the old FP in the SP spot */
fsr->regs[SP_REGNUM] = (read_memory_unsigned_integer
(fsr->regs[6]), BINWORD);
fsr->regs[SP_REGNUM] = read_memory_unsigned_integer (fsr->regs[6], BINWORD);
else
fsr->regs[SP_REGNUM] = after_prolog_fp + auto_depth;