arc: remove #ifndef CONFIG_AS_CFI_SIGNAL_FRAME
CONFIG_AS_CFI_SIGNAL_FRAME is never defined for ARC. Suggested-by: Nick Desaulniers <ndesaulniers@google.com> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
This commit is contained in:
parent
9eca345c67
commit
a75ff01390
|
@ -1178,11 +1178,9 @@ int arc_unwind(struct unwind_frame_info *frame)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* update frame */
|
/* update frame */
|
||||||
#ifndef CONFIG_AS_CFI_SIGNAL_FRAME
|
|
||||||
if (frame->call_frame
|
if (frame->call_frame
|
||||||
&& !UNW_DEFAULT_RA(state.regs[retAddrReg], state.dataAlign))
|
&& !UNW_DEFAULT_RA(state.regs[retAddrReg], state.dataAlign))
|
||||||
frame->call_frame = 0;
|
frame->call_frame = 0;
|
||||||
#endif
|
|
||||||
cfa = FRAME_REG(state.cfa.reg, unsigned long) + state.cfa.offs;
|
cfa = FRAME_REG(state.cfa.reg, unsigned long) + state.cfa.offs;
|
||||||
startLoc = min_t(unsigned long, UNW_SP(frame), cfa);
|
startLoc = min_t(unsigned long, UNW_SP(frame), cfa);
|
||||||
endLoc = max_t(unsigned long, UNW_SP(frame), cfa);
|
endLoc = max_t(unsigned long, UNW_SP(frame), cfa);
|
||||||
|
|
Loading…
Reference in New Issue