Title: [228438] trunk/Source/_javascript_Core
- Revision
- 228438
- Author
- [email protected]
- Date
- 2018-02-13 15:03:21 -0800 (Tue, 13 Feb 2018)
Log Message
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):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (228437 => 228438)
--- trunk/Source/_javascript_Core/ChangeLog 2018-02-13 22:43:50 UTC (rev 228437)
+++ trunk/Source/_javascript_Core/ChangeLog 2018-02-13 23:03:21 UTC (rev 228438)
@@ -1,3 +1,10 @@
+2018-02-13 Saam Barati <[email protected]>
+
+ 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 Guillaume Emont <[email protected]>
[YarrJIT][ARM] We need to save r8 as it is the initial start register
Modified: trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT32_64.cpp (228437 => 228438)
--- trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT32_64.cpp 2018-02-13 22:43:50 UTC (rev 228437)
+++ trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT32_64.cpp 2018-02-13 23:03:21 UTC (rev 228438)
@@ -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
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes