Title: [156637] trunk/Source/_javascript_Core
Revision
156637
Author
rga...@webkit.org
Date
2013-09-30 01:10:12 -0700 (Mon, 30 Sep 2013)

Log Message

Unreviewed. Speculative build fix on ARMv7 Thumb2 after r156490.

* dfg/DFGSpeculativeJIT.cpp:
(JSC::DFG::fmodAsDFGOperation):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (156636 => 156637)


--- trunk/Source/_javascript_Core/ChangeLog	2013-09-30 07:35:29 UTC (rev 156636)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-09-30 08:10:12 UTC (rev 156637)
@@ -1,3 +1,10 @@
+2013-09-30  Gabor Rapcsanyi  <rga...@webkit.org>
+
+        Unreviewed. Speculative build fix on ARMv7 Thumb2 after r156490.
+
+        * dfg/DFGSpeculativeJIT.cpp:
+        (JSC::DFG::fmodAsDFGOperation):
+
 2013-09-29  Nadav Rotem  <nro...@apple.com>
 
         FTL: refactor compileAdd and compileArithSub into one function.

Modified: trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.cpp (156636 => 156637)


--- trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.cpp	2013-09-30 07:35:29 UTC (rev 156636)
+++ trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.cpp	2013-09-30 08:10:12 UTC (rev 156637)
@@ -299,7 +299,7 @@
 // On Windows we need to wrap fmod; on other platforms we can call it directly.
 // On ARMv7 we assert that all function pointers have to low bit set (point to thumb code).
 #if CALLING_CONVENTION_IS_STDCALL || CPU(ARM_THUMB2)
-static double DFG_OPERATION fmodAsDFGOperation(double x, double y)
+static double JIT_OPERATION fmodAsDFGOperation(double x, double y)
 {
     return fmod(x, y);
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to