diff options
author | Mark Kettenis <kettenis@gnu.org> | 2005-05-09 20:00:40 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2005-05-09 20:00:40 +0000 |
commit | 8cc49c48551690179fcc7eb79288d75ce1b939b1 (patch) | |
tree | 508b6edee0b69524145ee8323c6e6d4a38874bf8 /gdb/vaxbsd-nat.c | |
parent | 8142f7cb8b4511a9b9a9f53721d171c45f9b0b19 (diff) | |
download | gdb-8cc49c48551690179fcc7eb79288d75ce1b939b1.zip gdb-8cc49c48551690179fcc7eb79288d75ce1b939b1.tar.gz gdb-8cc49c48551690179fcc7eb79288d75ce1b939b1.tar.bz2 |
* vaxbsd-nat.c (vaxbsd_supply_gregset, vaxbsd_collect_gregset):
Use `gdb_byte *' for regs.
* vax-tdep.c (vax_supply_gregset): Use `gdb_byte *' for regs;
(vax_store_arguments, vax_push_dummy_call, vax_return_value): Use
gdb_byte for buf.
(vax_breakpoint_from_pc): Change return type to `const gdb_byte
*'. Use gdb_byte for break_insn.
(vax_skip_prologue): Use gdb_byte for op.
Diffstat (limited to 'gdb/vaxbsd-nat.c')
-rw-r--r-- | gdb/vaxbsd-nat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/vaxbsd-nat.c b/gdb/vaxbsd-nat.c index 533e1fd..0805654 100644 --- a/gdb/vaxbsd-nat.c +++ b/gdb/vaxbsd-nat.c @@ -1,6 +1,6 @@ /* Native-dependent code for modern VAX BSD's. - Copyright 2004 Free Software Foundation, Inc. + Copyright 2004, 2005 Free Software Foundation, Inc. This file is part of GDB. @@ -36,7 +36,7 @@ static void vaxbsd_supply_gregset (struct regcache *regcache, const void *gregs) { - const char *regs = gregs; + const gdb_byte *regs = gregs; int regnum; for (regnum = 0; regnum < VAX_NUM_REGS; regnum++) @@ -50,7 +50,7 @@ static void vaxbsd_collect_gregset (const struct regcache *regcache, void *gregs, int regnum) { - char *regs = gregs; + gdb_byte *regs = gregs; int i; for (i = 0; i <= VAX_NUM_REGS; i++) |