2000-07-21 Elena Zannoni <ezannoni@kwikemart.cygnus.com>

* regcache.c (read_register, read_register_bytes): Fix typos.
This commit is contained in:
Elena Zannoni 2000-07-21 22:25:52 +00:00
parent 6dff448f84
commit f41603356d
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2000-07-21 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* regcache.c (read_register, read_register_bytes): Fix typos.
2000-07-21 Michael Snyder <msnyder@cleaver.cygnus.com>
* config/i386/tm-i386.h: treat PC and FP as unsigned.

View File

@ -377,7 +377,7 @@ read_register_bytes (int inregbyte, char *myaddr, int inlen)
Update it from the target. */
if (regno < NUM_REGS)
target_fetch_registers (regno);
else if (regno < NUM_PSEUDO_REGS)
else if (regno < NUM_REGS + NUM_PSEUDO_REGS)
ARCH_FETCH_PSEUDO_REGISTERS (regno);
if (!register_valid[regno])
@ -532,7 +532,7 @@ read_register (int regno)
{
if (regno < NUM_REGS)
target_fetch_registers (regno);
else if (regno < NUM_PSEUDO_REGS)
else if (regno < NUM_REGS + NUM_PSEUDO_REGS)
ARCH_FETCH_PSEUDO_REGISTERS (regno);
}