* amd64-tdep.c (amd64_frame_prev_register)
(amd64_sigtramp_frame_prev_register): Change type of last argument to `gdb_byte *'.
This commit is contained in:
parent
7466dde533
commit
5323dd1d03
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2005-06-12 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* amd64-tdep.c (amd64_frame_prev_register)
|
||||
(amd64_sigtramp_frame_prev_register): Change type of last argument
|
||||
to `gdb_byte *'.
|
||||
|
||||
2005-06-11 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* i386-tdep.c (i386_register_type): Return
|
||||
|
|
|
@ -862,7 +862,7 @@ static void
|
|||
amd64_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 amd64_frame_cache *cache =
|
||||
amd64_frame_cache (next_frame, this_cache);
|
||||
|
@ -969,7 +969,7 @@ amd64_sigtramp_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)
|
||||
{
|
||||
/* Make sure we've initialized the cache. */
|
||||
amd64_sigtramp_frame_cache (next_frame, this_cache);
|
||||
|
|
Loading…
Reference in a new issue