diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-03-13 23:31:14 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-03-13 23:31:14 +0000 |
commit | a728f04251098dd0e74a2aea1e4d8e841e7fb404 (patch) | |
tree | 2708491f02c795e429a65713e51c466ddf016565 /gdb/infcmd.c | |
parent | 060d22b0d0cbc7786f83c236ed9812343530dc80 (diff) | |
download | gdb-a728f04251098dd0e74a2aea1e4d8e841e7fb404.zip gdb-a728f04251098dd0e74a2aea1e4d8e841e7fb404.tar.gz gdb-a728f04251098dd0e74a2aea1e4d8e841e7fb404.tar.bz2 |
Eliminate ARCH_NUM_REGS.
Diffstat (limited to 'gdb/infcmd.c')
-rw-r--r-- | gdb/infcmd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/infcmd.c b/gdb/infcmd.c index 1a95483..96a0fdd 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -1467,7 +1467,7 @@ void do_registers_info (int regnum, int fpregs) { register int i; - int numregs = ARCH_NUM_REGS; + int numregs = NUM_REGS; for (i = 0; i < numregs; i++) { @@ -1591,7 +1591,7 @@ registers_info (char *addr_exp, int fpregs) end = addr_exp; while (*end != '\0' && *end != ' ' && *end != '\t') ++end; - numregs = ARCH_NUM_REGS; + numregs = NUM_REGS; regnum = target_map_name_to_register (addr_exp, end - addr_exp); if (regnum >= 0) |