aboutsummaryrefslogtreecommitdiff
path: root/gdb/mipsv4-nat.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-10-30 23:08:18 +0000
committerAndrew Cagney <cagney@redhat.com>2004-10-30 23:08:18 +0000
commit607fc93c5df0e62dc803b98bee71e464557aa07a (patch)
tree16bbc6d20572e5202a87fe3da0bda107ccd51400 /gdb/mipsv4-nat.c
parentaeab9e265fbff8317bb0e19d1e67a8b17e983290 (diff)
downloadfsf-binutils-gdb-607fc93c5df0e62dc803b98bee71e464557aa07a.zip
fsf-binutils-gdb-607fc93c5df0e62dc803b98bee71e464557aa07a.tar.gz
fsf-binutils-gdb-607fc93c5df0e62dc803b98bee71e464557aa07a.tar.bz2
2004-10-30 Andrew Cagney <cagney@gnu.org>
* mips-tdep.h (MIPS_FIRST_EMBED_REGNUM) (MIPS_LAST_EMBED_REGNUM): Add. * config/mips/tm-mips.h (FIRST_EMBED_REGNUM) (LAST_EMBED_REGNUM): Delete. * mipsv4-nat.c, mips-tdep.c, mips-linux-tdep.c: Update.
Diffstat (limited to 'gdb/mipsv4-nat.c')
-rw-r--r--gdb/mipsv4-nat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/mipsv4-nat.c b/gdb/mipsv4-nat.c
index 5229fd5..bd48c6e 100644
--- a/gdb/mipsv4-nat.c
+++ b/gdb/mipsv4-nat.c
@@ -69,7 +69,7 @@ supply_gregset (gregset_t *gregsetp)
zerobuf);
regcache_raw_supply (current_regcache, DEPRECATED_FP_REGNUM, zerobuf);
regcache_raw_supply (current_regcache, MIPS_UNUSED_REGNUM, zerobuf);
- for (regi = FIRST_EMBED_REGNUM; regi <= LAST_EMBED_REGNUM; regi++)
+ for (regi = MIPS_FIRST_EMBED_REGNUM; regi <= MIPS_LAST_EMBED_REGNUM; regi++)
regcache_raw_supply (current_regcache, regi, zerobuf);
}