From: John David Anglin Date: Sat, 27 Aug 2005 18:36:46 +0000 (+0000) Subject: re PR target/23508 (FAIL: PR218) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=147a8fb1ca28372e8beb030b1ca91b59f7be42b0;p=gcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d37b25e7e30..68cdb6658b0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2005-08-27 John David Anglin + + 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 PR target/23539 diff --git a/gcc/config/pa/linux-unwind.h b/gcc/config/pa/linux-unwind.h index d6835697949..62fa065cf0e 100644 --- a/gcc/config/pa/linux-unwind.h +++ b/gcc/config/pa/linux-unwind.h @@ -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; }