diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-05-13 15:45:32 +0000 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-05-13 15:45:32 +0000 |
commit | 3ded48cbe3529811f8638fde9f392bc915c35163 (patch) | |
tree | 90bca6568cfeb269ff51aff49c412188fe3b02e9 /js/xpconnect/src | |
parent | 413ba3bad12946082f4fa6918736cd8f8e2c5a62 (diff) | |
download | UXP-3ded48cbe3529811f8638fde9f392bc915c35163.tar UXP-3ded48cbe3529811f8638fde9f392bc915c35163.tar.gz UXP-3ded48cbe3529811f8638fde9f392bc915c35163.tar.lz UXP-3ded48cbe3529811f8638fde9f392bc915c35163.tar.xz UXP-3ded48cbe3529811f8638fde9f392bc915c35163.zip |
Unhook Unboxed Objects option
Diffstat (limited to 'js/xpconnect/src')
-rw-r--r-- | js/xpconnect/src/XPCJSContext.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/js/xpconnect/src/XPCJSContext.cpp b/js/xpconnect/src/XPCJSContext.cpp index bde949a96..0243d80e3 100644 --- a/js/xpconnect/src/XPCJSContext.cpp +++ b/js/xpconnect/src/XPCJSContext.cpp @@ -1427,8 +1427,6 @@ ReloadPrefsCallback(const char* pref, void* data) bool extraWarnings = Preferences::GetBool(JS_OPTIONS_DOT_STR "strict"); - bool unboxedObjects = Preferences::GetBool(JS_OPTIONS_DOT_STR "unboxed_objects"); - sSharedMemoryEnabled = Preferences::GetBool(JS_OPTIONS_DOT_STR "shared_memory"); #ifdef DEBUG @@ -1457,8 +1455,6 @@ ReloadPrefsCallback(const char* pref, void* data) useBaselineEager ? 0 : -1); JS_SetGlobalJitCompilerOption(cx, JSJITCOMPILER_ION_WARMUP_TRIGGER, useIonEager ? 0 : -1); - JS_SetGlobalJitCompilerOption(cx, JSJITCOMPILER_UNBOXED_OBJECTS, - unboxedObjects); } XPCJSContext::~XPCJSContext() |