diff options
Diffstat (limited to 'gdb/frv-tdep.c')
-rw-r--r-- | gdb/frv-tdep.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/frv-tdep.c b/gdb/frv-tdep.c index e597037..483de85 100644 --- a/gdb/frv-tdep.c +++ b/gdb/frv-tdep.c @@ -309,7 +309,7 @@ frv_register_type (struct gdbarch *gdbarch, int reg) static void frv_pseudo_register_read (struct gdbarch *gdbarch, struct regcache *regcache, - int reg, void *buffer) + int reg, gdb_byte *buffer) { if (reg == iacc0_regnum) { @@ -335,7 +335,7 @@ frv_pseudo_register_read (struct gdbarch *gdbarch, struct regcache *regcache, static void frv_pseudo_register_write (struct gdbarch *gdbarch, struct regcache *regcache, - int reg, const void *buffer) + int reg, const gdb_byte *buffer) { if (reg == iacc0_regnum) { @@ -1031,7 +1031,7 @@ frv_frame_unwind_cache (struct frame_info *next_frame, static void frv_extract_return_value (struct type *type, struct regcache *regcache, - void *valbuf) + gdb_byte *valbuf) { int len = TYPE_LENGTH (type); @@ -1247,7 +1247,7 @@ frv_push_dummy_call (struct gdbarch *gdbarch, struct value *function, static void frv_store_return_value (struct type *type, struct regcache *regcache, - const void *valbuf) + const gdb_byte *valbuf) { int len = TYPE_LENGTH (type); @@ -1377,7 +1377,7 @@ frv_frame_prev_register (struct frame_info *next_frame, void **this_prologue_cache, int regnum, int *optimizedp, enum lval_type *lvalp, CORE_ADDR *addrp, - int *realnump, void *bufferp) + int *realnump, gdb_byte *bufferp) { struct frv_unwind_cache *info = frv_frame_unwind_cache (next_frame, this_prologue_cache); |