From 553338882229caaa892227e251a0c15fbb6b13dd Mon Sep 17 00:00:00 2001 From: Thays Grazia Date: Thu, 25 Mar 2021 16:40:00 -0300 Subject: [PATCH] [debugger] Removing call to jit_done to help debug multithread (#50240) It was causing a side effect on Unity, I will study it again while implement multithread on icordebug. Reverting part of this PR #19103 Mirror of this PR https://github.com/mono/mono/pull/20970 --- src/mono/mono/mini/mini-runtime.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/mono/mono/mini/mini-runtime.c b/src/mono/mono/mini/mini-runtime.c index 64e4682bf0976b..87d8a21a7d774d 100644 --- a/src/mono/mono/mini/mini-runtime.c +++ b/src/mono/mono/mini/mini-runtime.c @@ -2564,7 +2564,6 @@ mono_jit_compile_method_with_opt (MonoMethod *method, guint32 opt, gboolean jit_ g_assert (vtable); if (!mono_runtime_class_init_full (vtable, error)) return NULL; - MONO_PROFILER_RAISE (jit_done, (method, info)); code = MINI_ADDR_TO_FTNPTR (info->code_start); return mono_create_ftnptr (code);