diff options
author | Kevin Buettner <kevinb@redhat.com> | 2005-11-08 01:01:34 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2005-11-08 01:01:34 +0000 |
commit | e2b7c96630b46f3da7c97525ba900c638b679c8d (patch) | |
tree | b436b8b143b5a5f444e53011600b01a3958cb791 /gdb/frv-tdep.c | |
parent | 8c50e5e45aa4aa8c852b9d1dc426e2d1a4a9ce40 (diff) | |
download | gdb-e2b7c96630b46f3da7c97525ba900c638b679c8d.zip gdb-e2b7c96630b46f3da7c97525ba900c638b679c8d.tar.gz gdb-e2b7c96630b46f3da7c97525ba900c638b679c8d.tar.bz2 |
Various gdb_byte related changes for FRV targets.
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); |