Skip to content

Commit

Permalink
[runtime] Fix the DISABLE_JIT build on ARM.
Browse files Browse the repository at this point in the history
  • Loading branch information
vargaz committed Oct 23, 2013
1 parent 80f7e1f commit 50d4232
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions mono/mini/tramp-arm.c
Expand Up @@ -918,6 +918,13 @@ mono_arch_create_generic_class_init_trampoline (MonoTrampInfo **info, gboolean a
g_assert_not_reached ();
return NULL;
}

gpointer
mono_arch_get_nullified_class_init_trampoline (MonoTrampInfo **info)
{
g_assert_not_reached ();
return NULL;
}

#endif /* DISABLE_JIT */

Expand Down

0 comments on commit 50d4232

Please sign in to comment.