Title: [108347] trunk/Source/_javascript_Core
Revision
108347
Author
[email protected]
Date
2012-02-21 06:06:36 -0800 (Tue, 21 Feb 2012)

Log Message

Does not build on IA64, SPARC and Alpha
https://bugs.webkit.org/show_bug.cgi?id=79047

Patch by Gustavo Noronha Silva  <[email protected]> and Bob Tracy <[email protected]> on 2012-02-21
Rubber-stamped by Kent Tamura.

* wtf/dtoa/utils.h: these architectures also have correct double
operations, so add them to the appropriate side of the check.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (108346 => 108347)


--- trunk/Source/_javascript_Core/ChangeLog	2012-02-21 13:53:41 UTC (rev 108346)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-02-21 14:06:36 UTC (rev 108347)
@@ -1,3 +1,13 @@
+2012-02-21  Gustavo Noronha Silva  <[email protected]> and Bob Tracy  <[email protected]>
+
+        Does not build on IA64, SPARC and Alpha
+        https://bugs.webkit.org/show_bug.cgi?id=79047
+
+        Rubber-stamped by Kent Tamura.
+
+        * wtf/dtoa/utils.h: these architectures also have correct double
+        operations, so add them to the appropriate side of the check.
+
 2012-02-21  Filip Pizlo  <[email protected]>
 
         Fix massive crashes in all tests introduced by previous build fix, and fix non-DFG build.

Modified: trunk/Source/_javascript_Core/wtf/dtoa/utils.h (108346 => 108347)


--- trunk/Source/_javascript_Core/wtf/dtoa/utils.h	2012-02-21 13:53:41 UTC (rev 108346)
+++ trunk/Source/_javascript_Core/wtf/dtoa/utils.h	2012-02-21 14:06:36 UTC (rev 108347)
@@ -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) || CPU(S390) || CPU(S390X)
+#elif CPU(MIPS) || CPU(PPC) || CPU(PPC64) || OS(WINCE) || CPU(SH4) || CPU(S390) || CPU(S390X) || CPU(IA64) || CPU(SPARC) || CPU(ALPHA)
 #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