Title: [165275] trunk/Source/_javascript_Core
Revision
165275
Author
[email protected]
Date
2014-03-07 12:19:28 -0800 (Fri, 07 Mar 2014)

Log Message

Correct a comment typo from:
FLT should call fmod directly on platforms where LLVM cannot relocate the libcall
https://bugs.webkit.org/show_bug.cgi?id=129865

Patch by Andrew Trick <[email protected]> on 2014-03-07
Reviewed by Mark Lam.

* ftl/FTLOutput.h:
(JSC::FTL::Output::doubleRem):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (165274 => 165275)


--- trunk/Source/_javascript_Core/ChangeLog	2014-03-07 19:40:21 UTC (rev 165274)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-03-07 20:19:28 UTC (rev 165275)
@@ -1,3 +1,14 @@
+2014-03-07  Andrew Trick  <[email protected]>
+
+        Correct a comment typo from:
+        FLT should call fmod directly on platforms where LLVM cannot relocate the libcall
+        https://bugs.webkit.org/show_bug.cgi?id=129865
+
+        Reviewed by Mark Lam.
+
+        * ftl/FTLOutput.h:
+        (JSC::FTL::Output::doubleRem):
+
 2014-03-07  Mark Hahnenberg  <[email protected]>
 
         Use OwnPtr in StructureIDTable

Modified: trunk/Source/_javascript_Core/ftl/FTLOutput.h (165274 => 165275)


--- trunk/Source/_javascript_Core/ftl/FTLOutput.h	2014-03-07 19:40:21 UTC (rev 165274)
+++ trunk/Source/_javascript_Core/ftl/FTLOutput.h	2014-03-07 20:19:28 UTC (rev 165275)
@@ -129,7 +129,7 @@
     LValue doubleDiv(LValue left, LValue right) { return buildFDiv(m_builder, left, right); }
     LValue doubleRem(LValue left, LValue right)
     {
-        // FIXME: LLVM may soften float operations be expanding them to libcalls.
+        // FIXME: LLVM may soften float operations by expanding them to libcalls.
         // We cannot allow that on all platforms yet.
         // <rdar://16196412> MachO large code model support.
         return isX86() ? buildFRem(m_builder, left, right) : call(operation(fmod), left, right);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to