From: Andrew Cagney Date: Mon, 12 Jan 2004 20:13:25 +0000 (+0000) Subject: 2004-01-12 Andrew Cagney X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=de38af99476c3ecffc82b5b0f9ac7bf6ef9e337a;p=binutils-gdb.git 2004-01-12 Andrew Cagney * mips-tdep.c (mips_pseudo_register_read): Don't return a value, the function is void. (mips_pseudo_register_write): Ditto. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 208ffedbe3a..0f8d973647b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2004-01-12 Andrew Cagney + + * mips-tdep.c (mips_pseudo_register_read): Don't return a value, + the function is void. + (mips_pseudo_register_write): Ditto. + 2004-01-12 Andrew Cagney * stack.c (frame_info): Delete DEPRECATED_PRINT_EXTRA_FRAME_INFO diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index 9b7341da76e..fafac66be9d 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -556,7 +556,7 @@ mips_pseudo_register_read (struct gdbarch *gdbarch, struct regcache *regcache, int rawnum = cookednum % NUM_REGS; gdb_assert (cookednum >= NUM_REGS && cookednum < 2 * NUM_REGS); if (register_size (gdbarch, rawnum) == register_size (gdbarch, cookednum)) - return regcache_raw_read (regcache, rawnum, buf); + regcache_raw_read (regcache, rawnum, buf); else if (register_size (gdbarch, rawnum) > register_size (gdbarch, cookednum)) { if (gdbarch_tdep (gdbarch)->mips64_transfers_32bit_regs_p @@ -576,7 +576,7 @@ mips_pseudo_register_write (struct gdbarch *gdbarch, struct regcache *regcache, int rawnum = cookednum % NUM_REGS; gdb_assert (cookednum >= NUM_REGS && cookednum < 2 * NUM_REGS); if (register_size (gdbarch, rawnum) == register_size (gdbarch, cookednum)) - return regcache_raw_write (regcache, rawnum, buf); + regcache_raw_write (regcache, rawnum, buf); else if (register_size (gdbarch, rawnum) > register_size (gdbarch, cookednum)) { if (gdbarch_tdep (gdbarch)->mips64_transfers_32bit_regs_p