2004-08-19 Bernie Solomon <bernard@ugsolutions.com>
authorBernie Solomon <bernard@mono-cvs.ximian.com>
Thu, 19 Aug 2004 16:04:19 +0000 (16:04 -0000)
committerBernie Solomon <bernard@mono-cvs.ximian.com>
Thu, 19 Aug 2004 16:04:19 +0000 (16:04 -0000)
* exceptions-sparc.c (throw_exception): fix typo

svn path=/trunk/mono/; revision=32535

mono/mini/ChangeLog
mono/mini/exceptions-sparc.c

index 49ef8117a0ef99389f9cecdf4d9362cb9b6f8be7..20c21c5f29a756a0d9544631b94ba90b4670a25b 100644 (file)
@@ -1,3 +1,7 @@
+2004-08-19 Bernie Solomon <bernard@ugsolutions.com>
+
+       * exceptions-sparc.c (throw_exception): fix typo
+
 2004-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
 
        * mini-x86.c, cpu-pentium.md, inssel-x86.brg:
index aa4b46a9a963978c3f52d6161abdb3e0968da260..a10e9a98317dc4b944e0275a502d00298f4c7eec 100644 (file)
@@ -151,7 +151,7 @@ mono_arch_get_call_filter (void)
 }
 
 static void
-throw_exception (MonoObject *ex, gpointer sp, gpointer ip)
+throw_exception (MonoObject *exc, gpointer sp, gpointer ip)
 {
        MonoContext ctx;
        static void (*restore_context) (MonoContext *);
@@ -169,7 +169,7 @@ throw_exception (MonoObject *ex, gpointer sp, gpointer ip)
                MonoException *mono_ex = (MonoException*)exc;
                mono_ex->stack_trace = NULL;
        }
-       mono_handle_exception (&ctx, ex, ip, FALSE);
+       mono_handle_exception (&ctx, exc, ip, FALSE);
        restore_context (&ctx);
 
        g_assert_not_reached ();