Title: [209623] trunk/Source/_javascript_Core
Revision
209623
Author
fpi...@apple.com
Date
2016-12-09 11:49:50 -0800 (Fri, 09 Dec 2016)

Log Message

Unreviewed, disable concurrent GC for real.

* runtime/Options.cpp:
(JSC::recomputeDependentOptions):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (209622 => 209623)


--- trunk/Source/_javascript_Core/ChangeLog	2016-12-09 19:49:07 UTC (rev 209622)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-12-09 19:49:50 UTC (rev 209623)
@@ -1,5 +1,12 @@
 2016-12-09  Filip Pizlo  <fpi...@apple.com>
 
+        Unreviewed, disable concurrent GC for real.
+
+        * runtime/Options.cpp:
+        (JSC::recomputeDependentOptions):
+
+2016-12-09  Filip Pizlo  <fpi...@apple.com>
+
         Unreviewed, disable concurrent GC while crashes get investigated.
 
         * runtime/Options.cpp:

Modified: trunk/Source/_javascript_Core/runtime/Options.cpp (209622 => 209623)


--- trunk/Source/_javascript_Core/runtime/Options.cpp	2016-12-09 19:49:07 UTC (rev 209622)
+++ trunk/Source/_javascript_Core/runtime/Options.cpp	2016-12-09 19:49:50 UTC (rev 209623)
@@ -332,7 +332,7 @@
     Options::useFTLJIT() = false;
 #endif
     
-#if 0 && !CPU(X86_64) && !CPU(ARM64)
+#if 1 || (!CPU(X86_64) && !CPU(ARM64))
     Options::useConcurrentGC() = false;
 #endif
     
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to