Fix the DISABLE_JIT build.
[mono.git] / mono / mini / exceptions-alpha.c
index 24ceaa5d5a233043ad45d4b69ac14a680a4daff9..f507f7572104529059e83bf6695768e14bbc1b5e 100644 (file)
@@ -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 ========================*/