X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Fmini%2Fexceptions-s390.c;h=a6db38e300c99c808a357b41cc4231c2bf9d74e2;hb=345873e711c6ab088a21dd1a9e050ba167c86e69;hp=11a802331a2e203738e4e00bd4f0ce918bb6e98d;hpb=7bbda0750f055c7823f85694d9e54f1ea7bcb094;p=mono.git diff --git a/mono/mini/exceptions-s390.c b/mono/mini/exceptions-s390.c index 11a802331a2..a6db38e300c 100644 --- a/mono/mini/exceptions-s390.c +++ b/mono/mini/exceptions-s390.c @@ -65,8 +65,7 @@ /*------------------------------------------------------------------*/ gboolean mono_arch_handle_exception (void *ctx, - gpointer obj, - gboolean test_only); + gpointer obj); /*========================= End of Prototypes ======================*/ @@ -229,7 +228,7 @@ throw_exception (MonoObject *exc, unsigned long ip, unsigned long sp, if (!rethrow) mono_ex->stack_trace = NULL; } - mono_arch_handle_exception (&ctx, exc, FALSE); + mono_arch_handle_exception (&ctx, exc); setcontext(&ctx); g_assert_not_reached (); @@ -489,15 +488,13 @@ mono_arch_find_jit_info (MonoDomain *domain, MonoJitTlsData *jit_tls, /* */ /* Parameters - ctx - Saved processor state */ /* obj - The exception object */ -/* test_only - Only test if the exception is caught, */ -/* but don't call handlers */ /* */ /*------------------------------------------------------------------*/ gboolean -mono_arch_handle_exception (void *uc, gpointer obj, gboolean test_only) +mono_arch_handle_exception (void *uc, gpointer obj) { - return mono_handle_exception (uc, obj, mono_arch_ip_from_context(uc), test_only); + return mono_handle_exception (uc, obj); } /*========================= End of Function ========================*/