2002-08-19 Andrew Cagney <ac131313@redhat.com>

* frame.c (frame_register_unwind): When a register, set addrp to
the register's byte.
This commit is contained in:
Andrew Cagney 2002-08-21 03:34:22 +00:00
parent 5a89d8aaa2
commit fa5f27c703
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-08-19 Andrew Cagney <ac131313@redhat.com>
* frame.c (frame_register_unwind): When a register, set addrp to
the register's byte.
2002-08-20 Michael Snyder <msnyder@redhat.com>
* mips-tdep.c (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): These are only

View File

@ -142,7 +142,9 @@ frame_register_unwind (struct frame_info *frame, int regnum,
register cache. */
*optimizedp = 0;
*lvalp = lval_register;
*addrp = 0;
/* ULGH! Code uses the offset into the raw register byte array
as a way of identifying a register. */
*addrp = REGISTER_BYTE (regnum);
/* Should this code test ``register_cached (regnum) < 0'' and do
something like set realnum to -1 when the register isn't
available? */