Title: [97568] trunk/Source/_javascript_Core
Revision
97568
Author
[email protected]
Date
2011-10-15 17:54:05 -0700 (Sat, 15 Oct 2011)

Log Message

The s390 and s390x architectures both use 64-bit double type
that conforms to the IEEE-754 standard.

https://bugs.webkit.org/show_bug.cgi?id=69940

Patch by Dan Horák <[email protected]> on 2011-10-15
Reviewed by Gavin Barraclough.

* wtf/dtoa/utils.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (97567 => 97568)


--- trunk/Source/_javascript_Core/ChangeLog	2011-10-16 00:18:26 UTC (rev 97567)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-10-16 00:54:05 UTC (rev 97568)
@@ -1,3 +1,14 @@
+2011-10-15  Dan Horák <[email protected]>
+
+        The s390 and s390x architectures both use 64-bit double type
+        that conforms to the IEEE-754 standard.
+
+        https://bugs.webkit.org/show_bug.cgi?id=69940
+
+        Reviewed by Gavin Barraclough.
+
+        * wtf/dtoa/utils.h:
+
 2011-10-14  Filip Pizlo  <[email protected]>
 
         FunctionExecutable should expose the ability to create unattached FunctionCodeBlocks

Modified: trunk/Source/_javascript_Core/wtf/dtoa/utils.h (97567 => 97568)


--- trunk/Source/_javascript_Core/wtf/dtoa/utils.h	2011-10-16 00:18:26 UTC (rev 97567)
+++ trunk/Source/_javascript_Core/wtf/dtoa/utils.h	2011-10-16 00:54:05 UTC (rev 97568)
@@ -49,7 +49,7 @@
 defined(__ARMEL__) || \
 defined(_MIPS_ARCH_MIPS32R2)
 #define DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS 1
-#elif CPU(MIPS) || CPU(PPC) || CPU(PPC64) || OS(WINCE) || CPU(SH4)
+#elif CPU(MIPS) || CPU(PPC) || CPU(PPC64) || OS(WINCE) || CPU(SH4) || CPU(S390) || CPU(S390X)
 #define DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS 1
 #elif defined(_M_IX86) || defined(__i386__)
 #if defined(_WIN32)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to