Title: [240393] branches/safari-607-branch/Source/_javascript_Core
Revision
240393
Author
[email protected]
Date
2019-01-23 17:22:17 -0800 (Wed, 23 Jan 2019)

Log Message

Cherry-pick r240225. rdar://problem/47458257

    Unreviewed, fix -Wint-in-bool-context warning
    https://bugs.webkit.org/show_bug.cgi?id=193483
    <rdar://problem/47280522>

    * dfg/DFGFixupPhase.cpp:
    (JSC::DFG::FixupPhase::addCheckStructureForOriginalStringObjectUse):

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@240225 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-607-branch/Source/_javascript_Core/ChangeLog (240392 => 240393)


--- branches/safari-607-branch/Source/_javascript_Core/ChangeLog	2019-01-24 01:22:15 UTC (rev 240392)
+++ branches/safari-607-branch/Source/_javascript_Core/ChangeLog	2019-01-24 01:22:17 UTC (rev 240393)
@@ -1,5 +1,27 @@
 2019-01-23  Alan Coon  <[email protected]>
 
+        Cherry-pick r240225. rdar://problem/47458257
+
+    Unreviewed, fix -Wint-in-bool-context warning
+    https://bugs.webkit.org/show_bug.cgi?id=193483
+    <rdar://problem/47280522>
+    
+    * dfg/DFGFixupPhase.cpp:
+    (JSC::DFG::FixupPhase::addCheckStructureForOriginalStringObjectUse):
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@240225 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2019-01-20  Michael Catanzaro  <[email protected]>
+
+            Unreviewed, fix -Wint-in-bool-context warning
+            https://bugs.webkit.org/show_bug.cgi?id=193483
+            <rdar://problem/47280522>
+
+            * dfg/DFGFixupPhase.cpp:
+            (JSC::DFG::FixupPhase::addCheckStructureForOriginalStringObjectUse):
+
+2019-01-23  Alan Coon  <[email protected]>
+
         Cherry-pick r240186. rdar://problem/47458146
 
     Follow-up: Gigacages should start allocations from a slide

Modified: branches/safari-607-branch/Source/_javascript_Core/dfg/DFGFixupPhase.cpp (240392 => 240393)


--- branches/safari-607-branch/Source/_javascript_Core/dfg/DFGFixupPhase.cpp	2019-01-24 01:22:15 UTC (rev 240392)
+++ branches/safari-607-branch/Source/_javascript_Core/dfg/DFGFixupPhase.cpp	2019-01-24 01:22:17 UTC (rev 240393)
@@ -2456,7 +2456,7 @@
 
     void addCheckStructureForOriginalStringObjectUse(UseKind useKind, const NodeOrigin& origin, Node* node)
     {
-        RELEASE_ASSERT(useKind == StringObjectUse || StringOrStringObjectUse);
+        RELEASE_ASSERT(useKind == StringObjectUse || useKind == StringOrStringObjectUse);
 
         StructureSet set;
         set.add(m_graph.globalObjectFor(node->origin.semantic)->stringObjectStructure());
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to