Title: [201845] trunk/Source/_javascript_Core
Revision
201845
Author
benja...@webkit.org
Date
2016-06-08 17:41:28 -0700 (Wed, 08 Jun 2016)

Log Message

Tempory fix for the debug bots

Unreviewed.

Patch by Benjamin Poulain <bpoul...@apple.com> on 2016-06-08

* runtime/Options.cpp:
(JSC::Options::initialize):
Weaken an assertion while I test values for thresholdForOptimizeSoon.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (201844 => 201845)


--- trunk/Source/_javascript_Core/ChangeLog	2016-06-08 23:19:34 UTC (rev 201844)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-06-09 00:41:28 UTC (rev 201845)
@@ -1,5 +1,15 @@
 2016-06-08  Benjamin Poulain  <bpoul...@apple.com>
 
+        Tempory fix for the debug bots
+
+        Unreviewed.
+
+        * runtime/Options.cpp:
+        (JSC::Options::initialize):
+        Weaken an assertion while I test values for thresholdForOptimizeSoon.
+
+2016-06-08  Benjamin Poulain  <bpoul...@apple.com>
+
         [JSC] Change some parameters based on a random search
         https://bugs.webkit.org/show_bug.cgi?id=158514
 

Modified: trunk/Source/_javascript_Core/runtime/Options.cpp (201844 => 201845)


--- trunk/Source/_javascript_Core/runtime/Options.cpp	2016-06-08 23:19:34 UTC (rev 201844)
+++ trunk/Source/_javascript_Core/runtime/Options.cpp	2016-06-09 00:41:28 UTC (rev 201845)
@@ -449,7 +449,6 @@
 
             // Do range checks where needed and make corrections to the options:
             ASSERT(Options::thresholdForOptimizeAfterLongWarmUp() >= Options::thresholdForOptimizeAfterWarmUp());
-            ASSERT(Options::thresholdForOptimizeAfterWarmUp() >= Options::thresholdForOptimizeSoon());
             ASSERT(Options::thresholdForOptimizeAfterWarmUp() >= 0);
 
             dumpOptionsIfNeeded();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to