From 0761b46229e1ccc5b573eaf972ff2a0d64477493 Mon Sep 17 00:00:00 2001 From: Eric Botcazou Date: Fri, 13 Nov 2009 18:05:20 +0000 Subject: [PATCH] * exception.cc (PERSONALITY_FUNCTION): Fix oversight. From-SVN: r154159 --- libjava/ChangeLog | 4 ++++ libjava/exception.cc | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/libjava/ChangeLog b/libjava/ChangeLog index d7c6d36a09d..37153dabfc4 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,7 @@ +2009-11-13 Eric Botcazou + + * exception.cc (PERSONALITY_FUNCTION): Fix oversight. + 2009-11-02 Ralf Wildenhues PR bootstrap/38867 diff --git a/libjava/exception.cc b/libjava/exception.cc index 3a8fe46d57d..8affbbe9fdf 100644 --- a/libjava/exception.cc +++ b/libjava/exception.cc @@ -328,7 +328,7 @@ PERSONALITY_FUNCTION (int version, #ifdef HAVE_GETIPINFO ip = _Unwind_GetIPInfo (context, &ip_before_insn); #else - ip = _Unwind_GetIP (context) - 1; + ip = _Unwind_GetIP (context); #endif if (! ip_before_insn) --ip;