Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Formatting.
  • Loading branch information
Nathan Ricci authored and github-actions committed Mar 23, 2023
commit b6885b9e0a5a8c711e82c07fec6a121bfcdf8a3a
10 changes: 5 additions & 5 deletions src/mono/mono/mini/mini-runtime.c
Original file line number Diff line number Diff line change
Expand Up @@ -4470,13 +4470,13 @@ mini_init (const char *filename)


#ifdef ENABLE_ILGEN
mono_marshal_lightweight_init();
mono_marshal_ilgen_init_internal();
mono_marshal_lightweight_init ();
mono_marshal_ilgen_init_internal ();
#else
if(! mono_marshal_did_embedder_request_ilgen_callbacks())
if(! mono_marshal_did_embedder_request_ilgen_callbacks ())
{
mono_marshal_lightweight_init();
mono_marshal_ilgen_init_internal();
mono_marshal_lightweight_init ();
mono_marshal_ilgen_init_internal ();
}
else{
mono_marshal_noilgen_init_lightweight();
Expand Down