Commit abbb8307 by John David Anglin

linux-unwind.h (pa32_fallback_frame_state): Add cast.

	* config/pa/linux-unwind.h (pa32_fallback_frame_state): Add cast.

From-SVN: r271631
parent c51ecf28
2019-05-26 John David Anglin <danglin@gcc.gnu.org>
* config/pa/linux-unwind.h (pa32_fallback_frame_state): Add cast.
2019-05-17 H.J. Lu <hongjiu.lu@intel.com>
* soft-fp/extenddftf2.c: Use "_FP_W_TYPE_SIZE < 64" to check if
......
......@@ -130,7 +130,7 @@ pa32_fallback_frame_state (struct _Unwind_Context *context,
return _URC_END_OF_STACK;
frame = (struct rt_sigframe *)(sp + off);
sc = &frame->uc.uc_mcontext;
sc = (struct sigcontext *)&frame->uc.uc_mcontext;
new_cfa = sc->sc_gr[30];
fs->regs.cfa_how = CFA_REG_OFFSET;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment