Title: [158445] trunk/Source/WTF
Revision
158445
Author
commit-qu...@webkit.org
Date
2013-11-01 11:59:54 -0700 (Fri, 01 Nov 2013)

Log Message

HPPA build fixes
https://bugs.webkit.org/show_bug.cgi?id=123625

Original patch from John David Anglin <dave.ang...@bell.net>

Patch by Emilio Pozuelo Monfort <poch...@gmail.com> on 2013-11-01
Reviewed by Darin Adler.

* wtf/Platform.h:
* wtf/dtoa/utils.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (158444 => 158445)


--- trunk/Source/WTF/ChangeLog	2013-11-01 18:48:19 UTC (rev 158444)
+++ trunk/Source/WTF/ChangeLog	2013-11-01 18:59:54 UTC (rev 158445)
@@ -1,3 +1,15 @@
+2013-11-01  Emilio Pozuelo Monfort  <poch...@gmail.com>
+
+        HPPA build fixes
+        https://bugs.webkit.org/show_bug.cgi?id=123625
+
+        Original patch from John David Anglin <dave.ang...@bell.net>
+
+        Reviewed by Darin Adler.
+
+        * wtf/Platform.h:
+        * wtf/dtoa/utils.h:
+
 2013-11-01  Patrick Gansterer  <par...@webkit.org>
 
         Buildfix for !USE(ICU_UNICODE) after 156968.

Modified: trunk/Source/WTF/wtf/Platform.h (158444 => 158445)


--- trunk/Source/WTF/wtf/Platform.h	2013-11-01 18:48:19 UTC (rev 158444)
+++ trunk/Source/WTF/wtf/Platform.h	2013-11-01 18:59:54 UTC (rev 158445)
@@ -68,6 +68,7 @@
 /* CPU(HPPA) - HP PA-RISC */
 #if defined(__hppa__) || defined(__hppa64__)
 #define WTF_CPU_HPPA 1
+#define WTF_CPU_BIG_ENDIAN 1
 #endif
 
 /* CPU(IA64) - Itanium / IA-64 */

Modified: trunk/Source/WTF/wtf/dtoa/utils.h (158444 => 158445)


--- trunk/Source/WTF/wtf/dtoa/utils.h	2013-11-01 18:48:19 UTC (rev 158444)
+++ trunk/Source/WTF/wtf/dtoa/utils.h	2013-11-01 18:59:54 UTC (rev 158445)
@@ -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) || CPU(IA64) || CPU(SPARC) || CPU(ALPHA) || CPU(ARM64)
+#elif CPU(MIPS) || CPU(PPC) || CPU(PPC64) || OS(WINCE) || CPU(SH4) || CPU(S390) || CPU(S390X) || CPU(IA64) || CPU(SPARC) || CPU(ALPHA) || CPU(ARM64) || CPU(HPPA)
 #define DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS 1
 #elif defined(_M_IX86) || defined(__i386__)
 #if defined(_WIN32)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to