* i386-nto-tdep.c (i386nto_sigcontext_addr): Make sp a CORE_ADDR.

This commit is contained in:
Kris Warkentin
2003-06-17 17:49:39 +00:00
parent 46019f2774
commit 89929b45cc
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-06-17 Kris Warkentin <kewarken@qnx.com>
* i386-nto-tdep.c (i386nto_sigcontext_addr): Make sp a CORE_ADDR.
2003-06-17 Kris Warkentin <kewarken@qnx.com> 2003-06-17 Kris Warkentin <kewarken@qnx.com>
* i386-nto-tdep.c (i386nto_sigcontext_addr): Declare sp before using. * i386-nto-tdep.c (i386nto_sigcontext_addr): Declare sp before using.

View File

@ -240,7 +240,7 @@ static CORE_ADDR
i386nto_sigcontext_addr (struct frame_info *next_frame) i386nto_sigcontext_addr (struct frame_info *next_frame)
{ {
char buf[4]; char buf[4];
unsigned sp; CORE_ADDR sp;
frame_unwind_register (next_frame, SP_REGNUM, buf); frame_unwind_register (next_frame, SP_REGNUM, buf);
sp = extract_unsigned_integer (buf, 4); sp = extract_unsigned_integer (buf, 4);