X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Fmini%2Fexceptions-alpha.c;h=f507f7572104529059e83bf6695768e14bbc1b5e;hb=d0b97d4bd5f42978987b4ae1d7cad18bedd3b393;hp=24ceaa5d5a233043ad45d4b69ac14a680a4daff9;hpb=805d84953463cb1c4f38af1d65c3ccbbbdd185d4;p=mono.git diff --git a/mono/mini/exceptions-alpha.c b/mono/mini/exceptions-alpha.c index 24ceaa5d5a2..f507f757210 100644 --- a/mono/mini/exceptions-alpha.c +++ b/mono/mini/exceptions-alpha.c @@ -271,7 +271,7 @@ static void throw_exception(MonoException *exc, unsigned long RA, mono_ex->stack_trace = NULL; } - mono_handle_exception (&ctx, exc, (gpointer)RA, FALSE); + mono_handle_exception (&ctx, exc); restore_context(&ctx); @@ -565,18 +565,15 @@ mono_arch_get_throw_corlib_exception (void) /* */ /* 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) { ALPHA_DEBUG("mono_arch_handle_exception"); - return mono_handle_exception (uc, obj, mono_arch_ip_from_context(uc), - test_only); + return mono_handle_exception (uc, obj); } /*========================= End of Function ========================*/