Various gdb_byte related changes for FRV targets.

This commit is contained in:
Kevin Buettner
2005-11-08 01:01:34 +00:00
parent 8c50e5e45a
commit e2b7c96630
4 changed files with 50 additions and 26 deletions

View File

@ -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);