mirror of git://gcc.gnu.org/git/gcc.git
* exception.cc (PERSONALITY_FUNCTION): Fix oversight.
From-SVN: r154159
This commit is contained in:
parent
d7f1df66b2
commit
0761b46229
|
@ -1,3 +1,7 @@
|
||||||
|
2009-11-13 Eric Botcazou <ebotcazou@adacore.com>
|
||||||
|
|
||||||
|
* exception.cc (PERSONALITY_FUNCTION): Fix oversight.
|
||||||
|
|
||||||
2009-11-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
2009-11-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||||
|
|
||||||
PR bootstrap/38867
|
PR bootstrap/38867
|
||||||
|
|
|
@ -328,7 +328,7 @@ PERSONALITY_FUNCTION (int version,
|
||||||
#ifdef HAVE_GETIPINFO
|
#ifdef HAVE_GETIPINFO
|
||||||
ip = _Unwind_GetIPInfo (context, &ip_before_insn);
|
ip = _Unwind_GetIPInfo (context, &ip_before_insn);
|
||||||
#else
|
#else
|
||||||
ip = _Unwind_GetIP (context) - 1;
|
ip = _Unwind_GetIP (context);
|
||||||
#endif
|
#endif
|
||||||
if (! ip_before_insn)
|
if (! ip_before_insn)
|
||||||
--ip;
|
--ip;
|
||||||
|
|
Loading…
Reference in New Issue