Issue #1624 - Globally disable inlining optimizations in the JS JIT compiler.

This commit is contained in:
Moonchild 2020-12-01 22:46:55 +00:00 committed by roytam1
commit 7996b9e2cf

View file

@ -96,7 +96,7 @@ DefaultJitOptions::DefaultJitOptions()
SET_DEFAULT(disableGvn, false);
// Toggles whether inlining is globally disabled.
SET_DEFAULT(disableInlining, false);
SET_DEFAULT(disableInlining, true);
// Toggles whether loop invariant code motion is globally disabled.
SET_DEFAULT(disableLicm, false);