From 6207a4932a67dcb5bbce4805321984b7cdf90cac Mon Sep 17 00:00:00 2001 From: Zoltan Varga Date: Mon, 17 Jul 2017 19:14:02 -0400 Subject: [PATCH] [llvm] Set the MonoJitInfo.from_llvm flag for methods loaded from llvm, it got broken by 1debf3934120547b3003c0ec4ec90bae4b08ee13. (#5223) --- mono/mini/aot-runtime.c | 1 + 1 file changed, 1 insertion(+) diff --git a/mono/mini/aot-runtime.c b/mono/mini/aot-runtime.c index 7b28d8db4a2..55624a6b121 100644 --- a/mono/mini/aot-runtime.c +++ b/mono/mini/aot-runtime.c @@ -3005,6 +3005,7 @@ decode_exception_debug_info (MonoAotModule *amodule, MonoDomain *domain, g_slist_free (nesting [i]); g_free (nesting); } + jinfo->from_llvm = 1; } else { len = mono_jit_info_size (flags, num_clauses, num_holes); jinfo = (MonoJitInfo *)alloc0_jit_info_data (domain, len, async); -- 2.25.1