summaryrefslogtreecommitdiff
path: root/libjava/exception.cc
diff options
context:
space:
mode:
authorJack Howarth <howarth@bromo.med.uc.edu>2006-09-27 21:24:23 +0000
committerTom Tromey <tromey@gcc.gnu.org>2006-09-27 21:24:23 +0000
commitd4708d9dd4abacde115661500fe999266264dbe7 (patch)
treeb0c2bc5aedb4964cac31de895df848e4f19b09a2 /libjava/exception.cc
parente48d66a949a0ea367bb3df15df5f345f46184d9f (diff)
downloadgcc-d4708d9dd4abacde115661500fe999266264dbe7.tar.gz
re PR target/26792 (need to use autoconf when using newly-added libgcc functions)
2006-09-26 Jack Howarth <howarth@bromo.med.uc.edu> PR target/26792: * exception.cc (PERSONALITY_FUNCTION): use _Unwind_GetIP if HAVE_GETIPINFO not defined. * stacktrace.cc (_Jv_StackTrace::UnwindTraceFn): Likewise. (_Jv_StackTrace::getLineNumberForFrame): Likewise. * configure.ac: use GCC_CHECK_UNWIND_GETIPINFO. * aclocal.m4, configure, include/config.h.in, Makefile.in: Rebuilt. From-SVN: r117259
Diffstat (limited to 'libjava/exception.cc')
-rw-r--r--libjava/exception.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/libjava/exception.cc b/libjava/exception.cc
index 65bc4ed196b..3d8fda1d790 100644
--- a/libjava/exception.cc
+++ b/libjava/exception.cc
@@ -231,9 +231,13 @@ PERSONALITY_FUNCTION (int version,
// Parse the LSDA header.
p = parse_lsda_header (context, language_specific_data, &info);
+#ifdef HAVE_GETIPINFO
ip = _Unwind_GetIPInfo (context, &ip_before_insn);
if (! ip_before_insn)
--ip;
+#else
+ ip = _Unwind_GetIP (context) - 1;
+#endif
landing_pad = 0;
action_record = 0;
handler_switch_value = 0;