[mono] Disable the remove empty finally pass, it still causes failures. (#53799)
authorZoltan Varga <vargaz@gmail.com>
Mon, 7 Jun 2021 08:22:41 +0000 (04:22 -0400)
committerGitHub <noreply@github.com>
Mon, 7 Jun 2021 08:22:41 +0000 (04:22 -0400)
src/mono/mono/mini/mini.c

index 8d2a8f9..a8fb86c 100644 (file)
@@ -3590,7 +3590,8 @@ mini_method_compile (MonoMethod *method, guint32 opts, JitFlags flags, int parts
                mono_cfg_dump_ir (cfg, "if_conversion");
        }
 
-       remove_empty_finally_pass (cfg);
+       // This still causes failures
+       //remove_empty_finally_pass (cfg);
 
        mono_threads_safepoint ();