diff options
author | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2000-07-21 22:25:52 +0000 |
---|---|---|
committer | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2000-07-21 22:25:52 +0000 |
commit | f41603356dd6c6ff780c5f92c1a298d54229d055 (patch) | |
tree | f3335770464d7809e0d5a1db069526576d2a92c0 /gdb/regcache.c | |
parent | 6dff448f84031660d7921c2182b96d69c365cdf3 (diff) | |
download | gdb-f41603356dd6c6ff780c5f92c1a298d54229d055.zip gdb-f41603356dd6c6ff780c5f92c1a298d54229d055.tar.gz gdb-f41603356dd6c6ff780c5f92c1a298d54229d055.tar.bz2 |
2000-07-21 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* regcache.c (read_register, read_register_bytes): Fix typos.
Diffstat (limited to 'gdb/regcache.c')
-rw-r--r-- | gdb/regcache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/regcache.c b/gdb/regcache.c index 9ccaf82..13cded2 100644 --- a/gdb/regcache.c +++ b/gdb/regcache.c @@ -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); } |