Title: [143679] trunk/Source/_javascript_Core
Revision
143679
Author
[email protected]
Date
2013-02-21 18:48:09 -0800 (Thu, 21 Feb 2013)

Log Message

Fix a typo that broke the 32 bit build.

* dfg/DFGSpeculativeJIT32_64.cpp:
(JSC::DFG::SpeculativeJIT::compile):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (143678 => 143679)


--- trunk/Source/_javascript_Core/ChangeLog	2013-02-22 02:29:41 UTC (rev 143678)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-02-22 02:48:09 UTC (rev 143679)
@@ -1,3 +1,10 @@
+2013-02-21  Jessie Berlin  <[email protected]>
+
+        Fix a typo that broke the 32 bit build.
+
+        * dfg/DFGSpeculativeJIT32_64.cpp:
+        (JSC::DFG::SpeculativeJIT::compile):
+
 2013-02-21  Michael Saboff  <[email protected]>
 
         25-30% regression in V8 RayTrace test in 32 bit builds with JIT disabled

Modified: trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT32_64.cpp (143678 => 143679)


--- trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT32_64.cpp	2013-02-22 02:29:41 UTC (rev 143678)
+++ trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT32_64.cpp	2013-02-22 02:48:09 UTC (rev 143679)
@@ -4047,7 +4047,7 @@
         m_jit.breakpoint();
         isOK.link(&m_jit);
 #else
-        speculaceCell(node->child1());
+        speculateCell(node->child1());
 #endif
 
         noResult(node);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to