Title: [159817] trunk/Source/WTF
Revision
159817
Author
[email protected]
Date
2013-11-27 08:35:29 -0800 (Wed, 27 Nov 2013)

Log Message

Remove Sparc specific code.
https://bugs.webkit.org/show_bug.cgi?id=124941

Patch by Tamas Gergely <[email protected]> on 2013-11-27
Reviewed by Michael Saboff.

Sparc is not supported, remove leftover code.

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

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (159816 => 159817)


--- trunk/Source/WTF/ChangeLog	2013-11-27 16:12:34 UTC (rev 159816)
+++ trunk/Source/WTF/ChangeLog	2013-11-27 16:35:29 UTC (rev 159817)
@@ -1,3 +1,15 @@
+2013-11-27  Tamas Gergely  <[email protected]>
+
+        Remove Sparc specific code.
+        https://bugs.webkit.org/show_bug.cgi?id=124941
+
+        Reviewed by Michael Saboff.
+
+        Sparc is not supported, remove leftover code.
+
+        * wtf/Platform.h:
+        * wtf/dtoa/utils.h:
+
 2013-11-26  Marcelo Lira  <[email protected]>
 
         Nix upstreaming - Adding build files and supporting scripts

Modified: trunk/Source/WTF/wtf/Platform.h (159816 => 159817)


--- trunk/Source/WTF/wtf/Platform.h	2013-11-27 16:12:34 UTC (rev 159816)
+++ trunk/Source/WTF/wtf/Platform.h	2013-11-27 16:35:29 UTC (rev 159817)
@@ -124,23 +124,6 @@
 #define WTF_CPU_SH4 1
 #endif
 
-/* CPU(SPARC32) - SPARC 32-bit */
-#if defined(__sparc) && !defined(__arch64__) || defined(__sparcv8)
-#define WTF_CPU_SPARC32 1
-#define WTF_CPU_BIG_ENDIAN 1
-#endif
-
-/* CPU(SPARC64) - SPARC 64-bit */
-#if defined(__sparc__) && defined(__arch64__) || defined (__sparcv9)
-#define WTF_CPU_SPARC64 1
-#define WTF_CPU_BIG_ENDIAN 1
-#endif
-
-/* CPU(SPARC) - any SPARC, true for CPU(SPARC32) and CPU(SPARC64) */
-#if CPU(SPARC32) || CPU(SPARC64)
-#define WTF_CPU_SPARC 1
-#endif
-
 /* CPU(S390X) - S390 64-bit */
 #if defined(__s390x__)
 #define WTF_CPU_S390X 1
@@ -330,7 +313,7 @@
 
 #endif /* ARM */
 
-#if CPU(ARM) || CPU(MIPS) || CPU(SH4) || CPU(SPARC)
+#if CPU(ARM) || CPU(MIPS) || CPU(SH4)
 #define WTF_CPU_NEEDS_ALIGNED_ACCESS 1
 #endif
 
@@ -675,7 +658,6 @@
     || (CPU(IA64) && !CPU(IA64_32)) \
     || CPU(ALPHA) \
     || CPU(ARM64) \
-    || CPU(SPARC64) \
     || CPU(S390X) \
     || CPU(PPC64)
 #define WTF_USE_JSVALUE64 1

Modified: trunk/Source/WTF/wtf/dtoa/utils.h (159816 => 159817)


--- trunk/Source/WTF/wtf/dtoa/utils.h	2013-11-27 16:12:34 UTC (rev 159816)
+++ trunk/Source/WTF/wtf/dtoa/utils.h	2013-11-27 16:35:29 UTC (rev 159817)
@@ -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) || CPU(HPPA)
+#elif CPU(MIPS) || CPU(PPC) || CPU(PPC64) || OS(WINCE) || CPU(SH4) || CPU(S390) || CPU(S390X) || CPU(IA64) || 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
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to