Title: [211691] branches/safari-603-branch/Source/_javascript_Core
Revision
211691
Author
matthew_han...@apple.com
Date
2017-02-05 20:03:27 -0800 (Sun, 05 Feb 2017)

Log Message

Merge r211463. rdar://problem/30296879

Modified Paths

Diff

Modified: branches/safari-603-branch/Source/_javascript_Core/ChangeLog (211690 => 211691)


--- branches/safari-603-branch/Source/_javascript_Core/ChangeLog	2017-02-06 04:03:24 UTC (rev 211690)
+++ branches/safari-603-branch/Source/_javascript_Core/ChangeLog	2017-02-06 04:03:27 UTC (rev 211691)
@@ -1,3 +1,17 @@
+2017-02-02  Matthew Hanson  <matthew_han...@apple.com>
+
+        Merge r211463. rdar://problem/30296879
+
+    2017-01-31  Filip Pizlo  <fpi...@apple.com>
+
+            Make verifyEdge a RELEASE_ASSERT
+            <rdar://problem/30296879>
+
+            Rubber stamped by Saam Barati.
+
+            * dfg/DFGAbstractInterpreterInlines.h:
+            (JSC::DFG::AbstractInterpreter<AbstractStateType>::executeEffects):
+
 2017-01-31  Matthew Hanson  <matthew_han...@apple.com>
 
         Merge r211385. rdar://problem/29738502

Modified: branches/safari-603-branch/Source/_javascript_Core/dfg/DFGAbstractInterpreterInlines.h (211690 => 211691)


--- branches/safari-603-branch/Source/_javascript_Core/dfg/DFGAbstractInterpreterInlines.h	2017-02-06 04:03:24 UTC (rev 211690)
+++ branches/safari-603-branch/Source/_javascript_Core/dfg/DFGAbstractInterpreterInlines.h	2017-02-06 04:03:27 UTC (rev 211691)
@@ -172,8 +172,7 @@
 template<typename AbstractStateType>
 bool AbstractInterpreter<AbstractStateType>::executeEffects(unsigned clobberLimit, Node* node)
 {
-    if (!ASSERT_DISABLED)
-        verifyEdges(node);
+    verifyEdges(node);
     
     m_state.createValueForNode(node);
     
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to