Commit 147a8fb1 by John David Anglin Committed by John David Anglin

re PR target/23508 (FAIL: PR218)

	PR libgcj/23508
	* pa/linux-unwind.h (pa32_fallback_frame_state): Use r0 slot in frame
	state for return address column of signal frames.

From-SVN: r103568
parent 10c682a0
2005-08-27 John David Anglin <dave.anflin@nrc-cnrc.gc.ca>
PR libgcj/23508
* pa/linux-unwind.h (pa32_fallback_frame_state): Use r0 slot in frame
state for return address column of signal frames.
2005-08-27 David Edelsohn <edelsohn@gnu.org>
PR target/23539
......
......@@ -131,8 +131,8 @@ pa32_fallback_frame_state (struct _Unwind_Context *context,
}
fs->regs.reg[88].how = REG_SAVED_OFFSET;
fs->regs.reg[88].loc.offset = (long) &sc->sc_sar - new_cfa;
fs->regs.reg[2].how = REG_SAVED_OFFSET;
fs->regs.reg[2].loc.offset = (long) &sc->sc_iaoq[0] - new_cfa;
fs->retaddr_column = 2;
fs->regs.reg[0].how = REG_SAVED_OFFSET;
fs->regs.reg[0].loc.offset = (long) &sc->sc_iaoq[0] - new_cfa;
fs->retaddr_column = 0;
return _URC_NO_REASON;
}
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