diff options
Diffstat (limited to 'gdb/xtensa-tdep.c')
-rw-r--r-- | gdb/xtensa-tdep.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/xtensa-tdep.c b/gdb/xtensa-tdep.c index c3b22e0..a24fb25 100644 --- a/gdb/xtensa-tdep.c +++ b/gdb/xtensa-tdep.c @@ -851,7 +851,7 @@ xtensa_supply_gregset (const struct regset *regset, const void *gregs, size_t len) { - const xtensa_elf_gregset_t *regs = gregs; + const xtensa_elf_gregset_t *regs = (const xtensa_elf_gregset_t *) gregs; struct gdbarch *gdbarch = get_regcache_arch (rc); int i; @@ -1272,7 +1272,7 @@ xtensa_frame_cache (struct frame_info *this_frame, void **this_cache) int windowed, ps_regnum; if (*this_cache) - return *this_cache; + return (struct xtensa_frame_cache *) *this_cache; pc = get_frame_register_unsigned (this_frame, gdbarch_pc_regnum (gdbarch)); ps_regnum = gdbarch_ps_regnum (gdbarch); @@ -1452,7 +1452,7 @@ xtensa_frame_prev_register (struct frame_info *this_frame, if (*this_cache == NULL) *this_cache = xtensa_frame_cache (this_frame, this_cache); - cache = *this_cache; + cache = (struct xtensa_frame_cache *) *this_cache; if (regnum ==gdbarch_pc_regnum (gdbarch)) saved_reg = cache->ra; @@ -1566,7 +1566,7 @@ xtensa_extract_return_value (struct type *type, void *dst) { struct gdbarch *gdbarch = get_regcache_arch (regcache); - bfd_byte *valbuf = dst; + bfd_byte *valbuf = (bfd_byte *) dst; int len = TYPE_LENGTH (type); ULONGEST pc, wb; int callsize, areg; @@ -1622,7 +1622,7 @@ xtensa_store_return_value (struct type *type, const void *dst) { struct gdbarch *gdbarch = get_regcache_arch (regcache); - const bfd_byte *valbuf = dst; + const bfd_byte *valbuf = (const bfd_byte *) dst; unsigned int areg; ULONGEST pc, wb; int callsize; |