Skip to content

Commit

Permalink
[interp] Fix sdks build (dotnet#36121)
Browse files Browse the repository at this point in the history
Co-authored-by: BrzVlad <[email protected]>
  • Loading branch information
monojenkins and BrzVlad authored May 9, 2020
1 parent 930d80d commit 3cd02df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/mono/mono/mini/interp/interp.c
Original file line number Diff line number Diff line change
Expand Up @@ -2941,7 +2941,7 @@ interp_create_method_pointer (MonoMethod *method, gboolean compile, MonoError *e
}
} else {
#ifndef MONO_ARCH_HAVE_INTERP_ENTRY_TRAMPOLINE
mono_error_assertf_ok (error, "couldn't compile wrapper \"%s\" for \"%s\"",
g_assertion_message ("couldn't compile wrapper \"%s\" for \"%s\"",
mono_method_get_name_full (wrapper, TRUE, TRUE, MONO_TYPE_NAME_FORMAT_IL),
mono_method_get_name_full (method, TRUE, TRUE, MONO_TYPE_NAME_FORMAT_IL));
#else
Expand Down
2 changes: 1 addition & 1 deletion src/mono/mono/mini/mini-x86.c
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ void
mono_arch_set_native_call_context_args (CallContext *ccontext, gpointer frame, MonoMethodSignature *sig)
{
CallInfo *cinfo = get_call_info (NULL, sig);
MonoEECallbacks *interp_cb = mini_get_interp_callbacks ();
const MonoEECallbacks *interp_cb = mini_get_interp_callbacks ();
gpointer storage;
ArgInfo *ainfo;

Expand Down

0 comments on commit 3cd02df

Please sign in to comment.