* i386-tdep.c (i386_frame_saved_pc): Replace call to

deprecated_read_register_dummy with
frame_unwind_unsigned_register.
This commit is contained in:
Mark Kettenis
2002-10-26 14:58:42 +00:00
parent 751f1375d6
commit 267bf4bb32
2 changed files with 10 additions and 2 deletions

View File

@@ -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

View File

@@ -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);