forked from Imagelibrary/binutils-gdb
2002-11-14 Andrew Cagney <ac131313@redhat.com>
* regcache.h (deprecated_registers): Rename registers. * a68v-nat.c, alpha-nat.c, arch-utils.c, core-sol2.c: Update. * hp300ux-nat.c, hppab-nat.c, hppah-nat.c: Update. * hppam3-nat.c, hpux-thread.c, i386gnu-nat.c: Update. * ia64-aix-nat.c, ia64-linux-nat.c, ia64-tdep.c: Update. * irix4-nat.c, irix5-nat.c, lynx-nat.c, m68k-tdep.c: Update. * m68knbsd-nat.c, mips-linux-tdep.c, mipsm3-nat.c: Update. * mipsv4-nat.c, ns32knbsd-nat.c, ppc-bdm.c: Update. * ppc-sysv-tdep.c, ptx4-nat.c, regcache.c, remote-es.c: Update. * remote-sds.c, remote-vx68.c, remote-vxmips.c: Update. * remote-vxsparc.c, rs6000-tdep.c, sol-thread.c: Update. * sparc-nat.c, sparc-tdep.c, sun3-nat.c, symm-nat.c: Update. * v850ice.c: Update.
This commit is contained in:
@@ -121,7 +121,7 @@ store_inferior_registers (int regno)
|
||||
{
|
||||
CORE_ADDR temp;
|
||||
|
||||
temp = *(CORE_ADDR *)®isters[REGISTER_BYTE (regno)];
|
||||
temp = *(CORE_ADDR *)&deprecated_registers[REGISTER_BYTE (regno)];
|
||||
|
||||
/* Set the priv level (stored in the low two bits of the PC. */
|
||||
temp |= 0x3;
|
||||
@@ -146,7 +146,7 @@ store_inferior_registers (int regno)
|
||||
the high part of IPSW. What will it take for HP to catch a
|
||||
clue about building sensible interfaces? */
|
||||
if (regno == IPSW_REGNUM && len == 8)
|
||||
*(int *)®isters[REGISTER_BYTE (regno)] = 0;
|
||||
*(int *)&deprecated_registers[REGISTER_BYTE (regno)] = 0;
|
||||
#endif
|
||||
|
||||
for (i = 0; i < len; i += sizeof (int))
|
||||
@@ -154,7 +154,7 @@ store_inferior_registers (int regno)
|
||||
errno = 0;
|
||||
call_ptrace (PT_WUREGS, PIDGET (inferior_ptid),
|
||||
(PTRACE_ARG3_TYPE) addr + i,
|
||||
*(int *) ®isters[REGISTER_BYTE (regno) + i]);
|
||||
*(int *) &deprecated_registers[REGISTER_BYTE (regno) + i]);
|
||||
if (errno != 0)
|
||||
{
|
||||
/* Warning, not error, in case we are attached; sometimes
|
||||
|
||||
Reference in New Issue
Block a user