* 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 *'.
This commit is contained in:
parent
e122f1f5f1
commit
a8a0fc4cf5
2 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2005-07-01 Mark Kettenis <kettenis@gnu.org>
|
||||||
|
|
||||||
|
* 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 <sje@cup.hp.com>
|
2005-07-01 Steve Ellcey <sje@cup.hp.com>
|
||||||
|
|
||||||
* MAINTAINERS (Write After Approval): Add myself.
|
* MAINTAINERS (Write After Approval): Add myself.
|
||||||
|
|
|
@ -1659,7 +1659,7 @@ mips_insn16_frame_prev_register (struct frame_info *next_frame,
|
||||||
void **this_cache,
|
void **this_cache,
|
||||||
int regnum, int *optimizedp,
|
int regnum, int *optimizedp,
|
||||||
enum lval_type *lvalp, CORE_ADDR *addrp,
|
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,
|
struct mips_frame_cache *info = mips_insn16_frame_cache (next_frame,
|
||||||
this_cache);
|
this_cache);
|
||||||
|
@ -1979,7 +1979,7 @@ mips_insn32_frame_prev_register (struct frame_info *next_frame,
|
||||||
void **this_cache,
|
void **this_cache,
|
||||||
int regnum, int *optimizedp,
|
int regnum, int *optimizedp,
|
||||||
enum lval_type *lvalp, CORE_ADDR *addrp,
|
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,
|
struct mips_frame_cache *info = mips_insn32_frame_cache (next_frame,
|
||||||
this_cache);
|
this_cache);
|
||||||
|
@ -2073,7 +2073,7 @@ mips_stub_frame_prev_register (struct frame_info *next_frame,
|
||||||
void **this_cache,
|
void **this_cache,
|
||||||
int regnum, int *optimizedp,
|
int regnum, int *optimizedp,
|
||||||
enum lval_type *lvalp, CORE_ADDR *addrp,
|
enum lval_type *lvalp, CORE_ADDR *addrp,
|
||||||
int *realnump, void *valuep)
|
int *realnump, gdb_byte *valuep)
|
||||||
{
|
{
|
||||||
struct trad_frame_cache *this_trad_cache
|
struct trad_frame_cache *this_trad_cache
|
||||||
= mips_stub_frame_cache (next_frame, this_cache);
|
= mips_stub_frame_cache (next_frame, this_cache);
|
||||||
|
|
Loading…
Reference in a new issue