summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2020-12-01 22:46:55 +0000
committerMoonchild <moonchild@palemoon.org>2020-12-01 22:46:55 +0000
commitb668164260023ef921accc8e16bed39291bb71e0 (patch)
treeb014790795781b0bf28ae1c67016e44dfdf70dfb /js
parent433ed209baa888cd8d5537f3c02d80202e338eec (diff)
downloadUXP-b668164260023ef921accc8e16bed39291bb71e0.tar
UXP-b668164260023ef921accc8e16bed39291bb71e0.tar.gz
UXP-b668164260023ef921accc8e16bed39291bb71e0.tar.lz
UXP-b668164260023ef921accc8e16bed39291bb71e0.tar.xz
UXP-b668164260023ef921accc8e16bed39291bb71e0.zip
Issue #1624 - Globally disable inlining optimizations in the JS JIT compiler.
Diffstat (limited to 'js')
-rw-r--r--js/src/jit/JitOptions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/jit/JitOptions.cpp b/js/src/jit/JitOptions.cpp
index daae3d53b..7521a9fae 100644
--- a/js/src/jit/JitOptions.cpp
+++ b/js/src/jit/JitOptions.cpp
@@ -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);