diff options
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 2808c56..ab72b8c 100644 --- a/gdb/regcache.c +++ b/gdb/regcache.c @@ -310,7 +310,7 @@ legacy_read_register_gen (int regnum, char *myaddr) void regcache_read (int rawnum, char *buf) { - gdb_assert (rawnum >= 0 && rawnum < NUM_REGS); + gdb_assert (rawnum >= 0 && rawnum < (NUM_REGS + NUM_PSEUDO_REGS)); /* For moment, just use underlying legacy code. Ulgh!!! */ legacy_read_register_gen (rawnum, buf); } @@ -369,7 +369,7 @@ legacy_write_register_gen (int regnum, char *myaddr) void regcache_write (int rawnum, char *buf) { - gdb_assert (rawnum >= 0 && rawnum < NUM_REGS); + gdb_assert (rawnum >= 0 && rawnum < (NUM_REGS + NUM_PSEUDO_REGS)); /* For moment, just use underlying legacy code. Ulgh!!! */ legacy_write_register_gen (rawnum, buf); } |