Title: [147881] trunk/Source/WTF
Revision
147881
Author
[email protected]
Date
2013-04-07 15:08:32 -0700 (Sun, 07 Apr 2013)

Log Message

Do not check if WTF_ARM_ARCH_VERSION is defined in WTF_ARM_ARCH_AT_LEAST macro
https://bugs.webkit.org/show_bug.cgi?id=114127

Reviewed by Benjamin Poulain.

Platform.h defines WTF_ARM_ARCH_VERSION for CPU(ARM) always and removing
the check works around a bug in older Microsoft compiler versions.

* wtf/Platform.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (147880 => 147881)


--- trunk/Source/WTF/ChangeLog	2013-04-07 21:28:33 UTC (rev 147880)
+++ trunk/Source/WTF/ChangeLog	2013-04-07 22:08:32 UTC (rev 147881)
@@ -1,3 +1,15 @@
+2013-04-07  Patrick Gansterer  <[email protected]>
+
+        Do not check if WTF_ARM_ARCH_VERSION is defined in WTF_ARM_ARCH_AT_LEAST macro
+        https://bugs.webkit.org/show_bug.cgi?id=114127
+
+        Reviewed by Benjamin Poulain.
+
+        Platform.h defines WTF_ARM_ARCH_VERSION for CPU(ARM) always and removing
+        the check works around a bug in older Microsoft compiler versions.
+
+        * wtf/Platform.h:
+
 2013-04-07  David Kilzer  <[email protected]>
 
         Remove the rest of SVG_DOM_OBJC_BINDINGS

Modified: trunk/Source/WTF/wtf/Platform.h (147880 => 147881)


--- trunk/Source/WTF/wtf/Platform.h	2013-04-07 21:28:33 UTC (rev 147880)
+++ trunk/Source/WTF/wtf/Platform.h	2013-04-07 22:08:32 UTC (rev 147881)
@@ -163,7 +163,7 @@
 #endif
 
 /* CPU(ARM) - ARM, any version*/
-#define WTF_ARM_ARCH_AT_LEAST(N) (CPU(ARM) && defined(WTF_ARM_ARCH_VERSION) && WTF_ARM_ARCH_VERSION >= N)
+#define WTF_ARM_ARCH_AT_LEAST(N) (CPU(ARM) && WTF_ARM_ARCH_VERSION >= N)
 
 #if   defined(arm) \
     || defined(__arm__) \
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to