Procházet zdrojové kódy

Disable JITing ES6 generators by default

For now, and only on release branch.

For #6753
Petr Penzin před 4 roky
rodič
revize
5173d91e00
1 změnil soubory, kde provedl 1 přidání a 3 odebrání
  1. 1 3
      lib/Common/ConfigFlagsList.h

+ 1 - 3
lib/Common/ConfigFlagsList.h

@@ -675,12 +675,10 @@ PHASE(All)
 #define DEFAULT_CONFIG_ESNullishCoalescingOperator (true)
 #define DEFAULT_CONFIG_ESGlobalThis            (true)
 
-// Jitting generators has not been tested on ARM
-// enabled only for x86 and x64 for now
 #ifdef _M_ARM32_OR_ARM64
     #define DEFAULT_CONFIG_JitES6Generators            (false)
 #else
-    #define DEFAULT_CONFIG_JitES6Generators            (true)
+    #define DEFAULT_CONFIG_JitES6Generators            (false)
 #endif
 
 #ifdef COMPILE_DISABLE_ES6RegExPrototypeProperties