5059ab35f3
git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@1552 6952d904-891a-0410-993b-d76249ca496b
15 lines
440 B
Diff
15 lines
440 B
Diff
--- sysdeps/generic/framestate.c.orig Fri Apr 23 23:59:52 2004
|
|
+++ sysdeps/generic/framestate.c Sat Apr 24 00:00:13 2004
|
|
@@ -42,7 +42,11 @@
|
|
if (handle == NULL
|
|
|| (frame_state_for
|
|
= (framesf) __libc_dlsym (handle, "__frame_state_for")) == NULL)
|
|
+#ifndef __USING_SJLJ_EXCEPTIONS__
|
|
frame_state_for = fallback_frame_state_for;
|
|
+#else
|
|
+ frame_state_for = abort;
|
|
+#endif
|
|
}
|
|
|
|
return frame_state_for (pc, frame_state);
|