Title: [159836] trunk/Source/_javascript_Core
Revision
159836
Author
o...@webkit.org
Date
2013-11-28 02:28:04 -0800 (Thu, 28 Nov 2013)

Log Message

Typo fix after r159834 to fix 32 bit builds.

Patch by Peter Gal <galpe...@inf.u-szeged.hu> on 2013-11-28
Reviewed by Csaba Osztrogonác.

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

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (159835 => 159836)


--- trunk/Source/_javascript_Core/ChangeLog	2013-11-28 07:40:03 UTC (rev 159835)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-11-28 10:28:04 UTC (rev 159836)
@@ -1,3 +1,12 @@
+2013-11-28  Peter Gal  <galpe...@inf.u-szeged.hu>
+
+        Typo fix after r159834 to fix 32 bit builds.
+
+        Reviewed by Csaba Osztrogonác.
+
+        * dfg/DFGSpeculativeJIT32_64.cpp:
+        (JSC::DFG::SpeculativeJIT::compile):
+
 2013-11-27  Nadav Rotem  <nro...@apple.com>
 
         Add a bunch of early exits and local optimizations to the x86 assembler.

Modified: trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT32_64.cpp (159835 => 159836)


--- trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT32_64.cpp	2013-11-28 07:40:03 UTC (rev 159835)
+++ trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT32_64.cpp	2013-11-28 10:28:04 UTC (rev 159836)
@@ -3690,7 +3690,7 @@
             GPRTemporary result(this);
             GPRReg resultGPR = result.gpr();
             m_jit.move(TrustedImmPtr(registers), resultGPR);
-            storageResult(resultGPR);
+            storageResult(resultGPR, node);
             break;
         }
         
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to