Commit b01bd5fe by Kai Tietz Committed by Kai Tietz

exception.c (PERSONALITY_FUNCTION): Remove extra decrement if HAVE_GETIPINFO is not defined.

2008-06-14  Kai Tietz  <kai.tietz@onevision.com>

	* exception.c (PERSONALITY_FUNCTION): Remove extra decrement
	if HAVE_GETIPINFO is not defined.

From-SVN: r136782
parent b15a9f63
2008-06-14 Kai Tietz <kai.tietz@onevision.com>
* exception.c (PERSONALITY_FUNCTION): Remove extra decrement
if HAVE_GETIPINFO is not defined.
2008-06-10 Kai Tietz <kai.tietz@onevision.com> 2008-06-10 Kai Tietz <kai.tietz@onevision.com>
* Object.m (compare): Add type id. * Object.m (compare): Add type id.
......
...@@ -295,7 +295,7 @@ PERSONALITY_FUNCTION (int version, ...@@ -295,7 +295,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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment