From 147a8fb1ca28372e8beb030b1ca91b59f7be42b0 Mon Sep 17 00:00:00 2001 From: John David Anglin Date: Sat, 27 Aug 2005 18:36:46 +0000 Subject: 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 --- gcc/config/pa/linux-unwind.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gcc/config/pa') diff --git a/gcc/config/pa/linux-unwind.h b/gcc/config/pa/linux-unwind.h index d683569..62fa065 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; } -- cgit v1.1