diff options
author | Jim Blandy <jimb@codesourcery.com> | 2004-05-04 17:43:52 +0000 |
---|---|---|
committer | Jim Blandy <jimb@codesourcery.com> | 2004-05-04 17:43:52 +0000 |
commit | b967e06fbcdd33cc9f61e62dad38dc6d879c1405 (patch) | |
tree | 81453d67630dd685243fa4c2584fa478e8e1cc1f /gdb/ppc-linux-nat.c | |
parent | edf61169009a4add7b95e1febbfc99bd10f03096 (diff) | |
download | gdb-b967e06fbcdd33cc9f61e62dad38dc6d879c1405.zip gdb-b967e06fbcdd33cc9f61e62dad38dc6d879c1405.tar.gz gdb-b967e06fbcdd33cc9f61e62dad38dc6d879c1405.tar.bz2 |
* config/rs6000/tm-rs6000.h (FPLAST_REGNUM): Delete #definition.
* ppc-tdep.h (ppc_num_fprs): New enum constant.
* aix-thread.c (fetch_regs_kernel_thread, fill_fprs,
store_regs_kernel_thread): Use FP0_REGNUM + ppc_num_fprs, not
FPLAST_REGNUM.
* ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
Same.
* ppc-linux-nat.c (ppc_register_u_addr): Same.
* rs6000-nat.c (regmap, fetch_inferior_registers)
(store_inferior_registers): Same.
Diffstat (limited to 'gdb/ppc-linux-nat.c')
-rw-r--r-- | gdb/ppc-linux-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ppc-linux-nat.c b/gdb/ppc-linux-nat.c index b869ad0..a6ae600 100644 --- a/gdb/ppc-linux-nat.c +++ b/gdb/ppc-linux-nat.c @@ -138,7 +138,7 @@ ppc_register_u_addr (int regno) /* Floating point regs: eight bytes each in both 32- and 64-bit ptrace interfaces. Thus, two slots each in 32-bit interface, one slot each in 64-bit interface. */ - if (regno >= FP0_REGNUM && regno <= FPLAST_REGNUM) + if (regno >= FP0_REGNUM && regno < FP0_REGNUM + ppc_num_fprs) u_addr = (PT_FPR0 * wordsize) + ((regno - FP0_REGNUM) * 8); /* UISA special purpose registers: 1 slot each */ |