From 796d3ea7e8c1c0bb624a103656969399c22a55d1 Mon Sep 17 00:00:00 2001 From: Zoltan Varga Date: Tue, 8 Nov 2016 18:55:51 -0500 Subject: [PATCH] [x86] Fix max code size of throw trampoline. --- mono/mini/exceptions-x86.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mono/mini/exceptions-x86.c b/mono/mini/exceptions-x86.c index 89985dea268..fe0957fa3f2 100644 --- a/mono/mini/exceptions-x86.c +++ b/mono/mini/exceptions-x86.c @@ -540,7 +540,7 @@ get_throw_trampoline (const char *name, gboolean rethrow, gboolean llvm, gboolea int i, stack_size, stack_offset, arg_offsets [5], regs_offset; MonoJumpInfo *ji = NULL; GSList *unwind_ops = NULL; - guint kMaxCodeSize = 128; + guint kMaxCodeSize = 192; start = code = mono_global_codeman_reserve (kMaxCodeSize); -- 2.11.4.GIT