aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/pa
diff options
context:
space:
mode:
authorJohn David Anglin <dave.anglin@nrc-cnrc.gc.ca>2005-08-27 18:36:46 +0000
committerJohn David Anglin <danglin@gcc.gnu.org>2005-08-27 18:36:46 +0000
commit147a8fb1ca28372e8beb030b1ca91b59f7be42b0 (patch)
tree4c3e0511af679d2f39661275ba90bb2efe83f484 /gcc/config/pa
parent10c682a0cb57e9ed0d5bb47a20af7932486b56a5 (diff)
downloadgcc-147a8fb1ca28372e8beb030b1ca91b59f7be42b0.zip
gcc-147a8fb1ca28372e8beb030b1ca91b59f7be42b0.tar.gz
gcc-147a8fb1ca28372e8beb030b1ca91b59f7be42b0.tar.bz2
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
Diffstat (limited to 'gcc/config/pa')
-rw-r--r--gcc/config/pa/linux-unwind.h6
1 files changed, 3 insertions, 3 deletions
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;
}