From a8a0fc4cf554b421b83a24de5f998af46b7c5437 Mon Sep 17 00:00:00 2001 From: Mark Kettenis Date: Fri, 1 Jul 2005 19:29:46 +0000 Subject: [PATCH] * mips-tdep.c (mips_insn16_frame_prev_register) (mips_insn32_frame_prev_register, mips_stub_frame_prev_register): Change type of last argument to `gdb_byte *'. --- gdb/ChangeLog | 6 ++++++ gdb/mips-tdep.c | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e8ca61f734..d4390ac072 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2005-07-01 Mark Kettenis + + * mips-tdep.c (mips_insn16_frame_prev_register) + (mips_insn32_frame_prev_register, mips_stub_frame_prev_register): + Change type of last argument to `gdb_byte *'. + 2005-07-01 Steve Ellcey * MAINTAINERS (Write After Approval): Add myself. diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index ca2b6e89cf..670214b423 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -1659,7 +1659,7 @@ mips_insn16_frame_prev_register (struct frame_info *next_frame, void **this_cache, int regnum, int *optimizedp, enum lval_type *lvalp, CORE_ADDR *addrp, - int *realnump, void *valuep) + int *realnump, gdb_byte *valuep) { struct mips_frame_cache *info = mips_insn16_frame_cache (next_frame, this_cache); @@ -1979,7 +1979,7 @@ mips_insn32_frame_prev_register (struct frame_info *next_frame, void **this_cache, int regnum, int *optimizedp, enum lval_type *lvalp, CORE_ADDR *addrp, - int *realnump, void *valuep) + int *realnump, gdb_byte *valuep) { struct mips_frame_cache *info = mips_insn32_frame_cache (next_frame, this_cache); @@ -2073,7 +2073,7 @@ mips_stub_frame_prev_register (struct frame_info *next_frame, void **this_cache, int regnum, int *optimizedp, enum lval_type *lvalp, CORE_ADDR *addrp, - int *realnump, void *valuep) + int *realnump, gdb_byte *valuep) { struct trad_frame_cache *this_trad_cache = mips_stub_frame_cache (next_frame, this_cache);