Title: [164064] trunk/Source/WTF
Revision
164064
Author
[email protected]
Date
2014-02-13 15:17:10 -0800 (Thu, 13 Feb 2014)

Log Message

[iOS] Disable HAVE_ARM_NEON_INTRINSICS

For now, disable HAVE_ARM_NEON_INTRINSICS when building for iOS. We want
to audit the applicable code before we enable this define.

* wtf/Platform.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (164063 => 164064)


--- trunk/Source/WTF/ChangeLog	2014-02-13 23:07:12 UTC (rev 164063)
+++ trunk/Source/WTF/ChangeLog	2014-02-13 23:17:10 UTC (rev 164064)
@@ -1,3 +1,12 @@
+2014-02-13  Daniel Bates  <[email protected]>
+
+        [iOS] Disable HAVE_ARM_NEON_INTRINSICS
+
+        For now, disable HAVE_ARM_NEON_INTRINSICS when building for iOS. We want
+        to audit the applicable code before we enable this define.
+
+        * wtf/Platform.h:
+
 2014-02-11  Filip Pizlo  <[email protected]>
 
         Hoist and combine array bounds checks

Modified: trunk/Source/WTF/wtf/Platform.h (164063 => 164064)


--- trunk/Source/WTF/wtf/Platform.h	2014-02-13 23:07:12 UTC (rev 164063)
+++ trunk/Source/WTF/wtf/Platform.h	2014-02-13 23:17:10 UTC (rev 164064)
@@ -505,6 +505,10 @@
 #define ENABLE_JIT_CONSTANT_BLINDING 0
 #endif
 
+#if CPU(ARM_NEON)
+#define HAVE_ARM_NEON_INTRINSICS 0
+#endif
+
 #endif /* PLATFORM(IOS) */
 
 #if PLATFORM(WIN) && !USE(WINGDI)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to