Skip to content

Commit

Permalink
[arm] fix --enable-minimal=aot build (mono#11653)
Browse files Browse the repository at this point in the history
[arm] fix --enable-minimal=aot build

mentioned here: mono#8430 (comment)
  • Loading branch information
lewurm authored and EgorBo committed Nov 14, 2018
1 parent 648cdcb commit 9460b4c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions mono/mini/aot-runtime.c
Expand Up @@ -6353,6 +6353,15 @@ mono_aot_get_gsharedvt_arg_trampoline (gpointer arg, gpointer addr)
return NULL;
}

#ifdef MONO_ARCH_HAVE_FTNPTR_ARG_TRAMPOLINE
gpointer
mono_aot_get_ftnptr_arg_trampoline (gpointer arg, gpointer addr)
{
g_assert_not_reached ();
return NULL;
}
#endif

void
mono_aot_set_make_unreadable (gboolean unreadable)
{
Expand Down

0 comments on commit 9460b4c

Please sign in to comment.