diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-09-30 13:23:49 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-09-30 13:23:49 +0000 |
commit | 4deab7378b2e02751de8e835f30b2233685afefd (patch) | |
tree | 10f8bc23e21d527f495000546448e7eeb3c22d41 /gdb/remote-vx68.c | |
parent | 7ed2b4e229a3996bc9a5594b8b3658eeff1deddb (diff) | |
download | gdb-4deab7378b2e02751de8e835f30b2233685afefd.zip gdb-4deab7378b2e02751de8e835f30b2233685afefd.tar.gz gdb-4deab7378b2e02751de8e835f30b2233685afefd.tar.bz2 |
2003-09-30 Andrew Cagney <cagney@redhat.com>
* remote-vxsparc.c (vx_read_register): Replace bzero with memset.
* remote-vxmips.c (vx_read_register): Ditto.
* remote-vx68.c (vx_read_register): Ditto.
* gnu-nat.c (inf_validate_procs): Ditto.
Diffstat (limited to 'gdb/remote-vx68.c')
-rw-r--r-- | gdb/remote-vx68.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/remote-vx68.c b/gdb/remote-vx68.c index 3e21fe6..8cdac6f 100644 --- a/gdb/remote-vx68.c +++ b/gdb/remote-vx68.c @@ -111,10 +111,10 @@ vx_read_register (int regno) } else { - bzero (&deprecated_registers[DEPRECATED_REGISTER_BYTE (FP0_REGNUM)], - MC68K_FPREG_SIZE * 8); - bzero (&deprecated_registers[DEPRECATED_REGISTER_BYTE (FPC_REGNUM)], - MC68K_FPREG_PLEN - (MC68K_FPREG_SIZE * 8)); + memset (&deprecated_registers[DEPRECATED_REGISTER_BYTE (FP0_REGNUM)], + 0, MC68K_FPREG_SIZE * 8); + memset (&deprecated_registers[DEPRECATED_REGISTER_BYTE (FPC_REGNUM)], + 0, MC68K_FPREG_PLEN - (MC68K_FPREG_SIZE * 8)); } /* Mark the register cache valid. */ |