Title: [264672] trunk/Source/_javascript_Core
Revision
264672
Author
sbar...@apple.com
Date
2020-07-21 12:29:00 -0700 (Tue, 21 Jul 2020)

Log Message

Disable NO_SMT by default
https://bugs.webkit.org/show_bug.cgi?id=214607

Reviewed by Filip Pizlo.

* runtime/OptionsList.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (264671 => 264672)


--- trunk/Source/_javascript_Core/ChangeLog	2020-07-21 19:15:59 UTC (rev 264671)
+++ trunk/Source/_javascript_Core/ChangeLog	2020-07-21 19:29:00 UTC (rev 264672)
@@ -1,3 +1,12 @@
+2020-07-21  Saam Barati  <sbar...@apple.com>
+
+        Disable NO_SMT by default
+        https://bugs.webkit.org/show_bug.cgi?id=214607
+
+        Reviewed by Filip Pizlo.
+
+        * runtime/OptionsList.h:
+
 2020-07-21  Caio Lima  <ticaiol...@gmail.com>
 
         Debug build is failing after r264537 on Linux

Modified: trunk/Source/_javascript_Core/runtime/OptionsList.h (264671 => 264672)


--- trunk/Source/_javascript_Core/runtime/OptionsList.h	2020-07-21 19:15:59 UTC (rev 264671)
+++ trunk/Source/_javascript_Core/runtime/OptionsList.h	2020-07-21 19:29:00 UTC (rev 264672)
@@ -76,7 +76,7 @@
 // and cannot be modified thereafter.
 
 #define FOR_EACH_JSC_OPTION(v)                                          \
-    v(Bool, useKernTCSM, true, Normal, "Note: this needs to go before other options since they depend on this value.") \
+    v(Bool, useKernTCSM, false, Normal, "Note: this needs to go before other options since they depend on this value.") \
     v(Bool, validateOptions, false, Normal, "crashes if mis-typed JSC options were passed to the VM") \
     v(Unsigned, dumpOptions, 0, Normal, "dumps JSC options (0 = None, 1 = Overridden only, 2 = All, 3 = Verbose)") \
     v(OptionString, configFile, nullptr, Normal, "file to configure JSC options and logging location") \
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to