Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mono/mini/exceptions-ia64.c')
-rw-r--r--mono/mini/exceptions-ia64.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mono/mini/exceptions-ia64.c b/mono/mini/exceptions-ia64.c
index d60c01abd63..87372e0b07a 100644
--- a/mono/mini/exceptions-ia64.c
+++ b/mono/mini/exceptions-ia64.c
@@ -256,7 +256,7 @@ throw_exception (MonoObject *exc, guint64 rethrow)
res = unw_get_reg (&ctx.cursor, UNW_IA64_SP, &sp);
g_assert (res == 0);
- ji = mini_jit_info_table_find (mono_domain_get (), (gpointer)ip);
+ ji = mono_jit_info_table_find (mono_domain_get (), (gpointer)ip);
//printf ("UN: %s %lx %lx\n", ji ? ji->method->name : "", ip, sp);
@@ -535,7 +535,7 @@ mono_arch_find_jit_info (MonoDomain *domain, MonoJitTlsData *jit_tls, MonoJitInf
if (prev_ji && ((guint8*)ip > (guint8*)prev_ji->code_start && ((guint8*)ip < ((guint8*)prev_ji->code_start) + prev_ji->code_size)))
ji = prev_ji;
else
- ji = mini_jit_info_table_find (domain, (gpointer)ip);
+ ji = mono_jit_info_table_find (domain, (gpointer)ip);
if (managed)
*managed = FALSE;
@@ -611,7 +611,7 @@ mono_arch_handle_exception (void *sigctx, gpointer obj, gboolean test_only)
res = unw_get_reg (&ctx.cursor, UNW_IA64_IP, &ip);
g_assert (res == 0);
- ji = mini_jit_info_table_find (mono_domain_get (), (gpointer)ip);
+ ji = mono_jit_info_table_find (mono_domain_get (), (gpointer)ip);
if (ji)
break;