mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-29 02:20:51 +00:00
[arm] Don't use special treatment for PC
In an exception frame the PC register is extracted from the stack just like other base registers, so there is no need for a special treatment. Signed-off-by: Torbjörn SVENSSON <torbjorn.svensson@st.com> Signed-off-by: Yvan Roux <yvan.roux@foss.st.com>
This commit is contained in:
@@ -3559,15 +3559,6 @@ arm_m_exception_prev_register (struct frame_info *this_frame,
|
||||
return frame_unwind_got_constant (this_frame, prev_regnum, sp_value);
|
||||
}
|
||||
|
||||
if (prev_regnum == ARM_PC_REGNUM)
|
||||
{
|
||||
CORE_ADDR lr = frame_unwind_register_unsigned (this_frame, ARM_LR_REGNUM);
|
||||
struct gdbarch *gdbarch = get_frame_arch (this_frame);
|
||||
|
||||
return frame_unwind_got_constant (this_frame, prev_regnum,
|
||||
arm_addr_bits_remove (gdbarch, lr));
|
||||
}
|
||||
|
||||
return trad_frame_get_prev_register (this_frame, cache->saved_regs,
|
||||
prev_regnum);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user