Title: [228459] branches/safari-605-branch/Source/_javascript_Core
Revision
228459
Author
jmarc...@apple.com
Date
2018-02-13 22:05:38 -0800 (Tue, 13 Feb 2018)

Log Message

Cherry-pick r228438. rdar://problem/37521089

Modified Paths

Diff

Modified: branches/safari-605-branch/Source/_javascript_Core/ChangeLog (228458 => 228459)


--- branches/safari-605-branch/Source/_javascript_Core/ChangeLog	2018-02-14 06:05:35 UTC (rev 228458)
+++ branches/safari-605-branch/Source/_javascript_Core/ChangeLog	2018-02-14 06:05:38 UTC (rev 228459)
@@ -1,5 +1,16 @@
 2018-02-13  Jason Marcell  <jmarc...@apple.com>
 
+        Cherry-pick r228438. rdar://problem/37521089
+
+    2018-02-13  Saam Barati  <sbar...@apple.com>
+
+            Follup fix to r228411 for 32-bit builds. I missed a place where we used non vararg getter for child2().
+
+            * dfg/DFGSpeculativeJIT32_64.cpp:
+            (JSC::DFG::SpeculativeJIT::compile):
+
+2018-02-13  Jason Marcell  <jmarc...@apple.com>
+
         Cherry-pick r228411. rdar://problem/37521089
 
     2018-02-12  Saam Barati  <sbar...@apple.com>

Modified: branches/safari-605-branch/Source/_javascript_Core/dfg/DFGSpeculativeJIT32_64.cpp (228458 => 228459)


--- branches/safari-605-branch/Source/_javascript_Core/dfg/DFGSpeculativeJIT32_64.cpp	2018-02-14 06:05:35 UTC (rev 228458)
+++ branches/safari-605-branch/Source/_javascript_Core/dfg/DFGSpeculativeJIT32_64.cpp	2018-02-14 06:05:38 UTC (rev 228459)
@@ -2576,7 +2576,7 @@
                     break;
                 }
 
-                if (node->child2().useKind() == SymbolUse) {
+                if (m_graph.varArgChild(node, 1).useKind() == SymbolUse) {
                     compileGetByValForObjectWithSymbol(node);
                     break;
                 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to