aboutsummaryrefslogtreecommitdiff
path: root/gdb/remote-vxmips.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2003-09-30 13:23:49 +0000
committerAndrew Cagney <cagney@redhat.com>2003-09-30 13:23:49 +0000
commit4deab7378b2e02751de8e835f30b2233685afefd (patch)
tree10f8bc23e21d527f495000546448e7eeb3c22d41 /gdb/remote-vxmips.c
parent7ed2b4e229a3996bc9a5594b8b3658eeff1deddb (diff)
downloadgdb-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-vxmips.c')
-rw-r--r--gdb/remote-vxmips.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/remote-vxmips.c b/gdb/remote-vxmips.c
index 28a4070..861ef68 100644
--- a/gdb/remote-vxmips.c
+++ b/gdb/remote-vxmips.c
@@ -141,10 +141,10 @@ vx_read_register (int regno)
}
else
{
- bzero ((char *) &deprecated_registers[DEPRECATED_REGISTER_BYTE (FP0_REGNUM)],
- REGISTER_RAW_SIZE (FP0_REGNUM) * 32);
- bzero ((char *) &deprecated_registers[DEPRECATED_REGISTER_BYTE (FCRCS_REGNUM)],
- REGISTER_RAW_SIZE (FCRCS_REGNUM));
+ memset (&deprecated_registers[DEPRECATED_REGISTER_BYTE (FP0_REGNUM)],
+ 0, REGISTER_RAW_SIZE (FP0_REGNUM) * 32);
+ memset (&deprecated_registers[DEPRECATED_REGISTER_BYTE (FCRCS_REGNUM)],
+ 0, REGISTER_RAW_SIZE (FCRCS_REGNUM));
}
/* Mark the register cache valid. */