forked from Imagelibrary/binutils-gdb
* i386-tdep.c (i386_frame_saved_pc): Replace call to
deprecated_read_register_dummy with frame_unwind_unsigned_register.
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
2002-10-26 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* i386-tdep.c (i386_frame_saved_pc): Replace call to
|
||||
deprecated_read_register_dummy with
|
||||
frame_unwind_unsigned_register.
|
||||
|
||||
* i386-tdep.c (i386_extract_struct_value_address): Use
|
||||
regcache_raw_read_unsigned instead of
|
||||
regcache_cooked_read_unsigned since we know that the register
|
||||
|
||||
@@ -535,8 +535,12 @@ static CORE_ADDR
|
||||
i386_frame_saved_pc (struct frame_info *frame)
|
||||
{
|
||||
if (PC_IN_CALL_DUMMY (frame->pc, 0, 0))
|
||||
return deprecated_read_register_dummy (frame->pc, frame->frame,
|
||||
PC_REGNUM);
|
||||
{
|
||||
ULONGEST pc;
|
||||
|
||||
frame_unwind_unsigned_register (frame, PC_REGNUM, &pc);
|
||||
return pc;
|
||||
}
|
||||
|
||||
if (frame->signal_handler_caller)
|
||||
return i386_sigtramp_saved_pc (frame);
|
||||
|
||||
Reference in New Issue
Block a user