Title: [219416] trunk/Source/bmalloc
Revision
219416
Author
ape...@igalia.com
Date
2017-07-12 11:43:36 -0700 (Wed, 12 Jul 2017)

Log Message

bmalloc: Failure to build when the compiler specifically targets ARMv8-A / defines __ARM_ARCH_8A__
https://bugs.webkit.org/show_bug.cgi?id=174424

Reviewed by Michael Catanzaro.

* bmalloc/BPlatform.h: Also check for __ARCH_ARM_8A__ to detect ARMv8.

Modified Paths

Diff

Modified: trunk/Source/bmalloc/ChangeLog (219415 => 219416)


--- trunk/Source/bmalloc/ChangeLog	2017-07-12 18:42:29 UTC (rev 219415)
+++ trunk/Source/bmalloc/ChangeLog	2017-07-12 18:43:36 UTC (rev 219416)
@@ -1,3 +1,12 @@
+2017-07-12  Adrian Perez de Castro  <ape...@igalia.com>
+
+        bmalloc: Failure to build when the compiler specifically targets ARMv8-A / defines __ARM_ARCH_8A__
+        https://bugs.webkit.org/show_bug.cgi?id=174424
+
+        Reviewed by Michael Catanzaro.
+
+        * bmalloc/BPlatform.h: Also check for __ARCH_ARM_8A__ to detect ARMv8.
+
 2017-07-05  Daewoong Jang  <daewoong.j...@navercorp.com>
 
         reinterpret_cast does not evaluate to constexpr

Modified: trunk/Source/bmalloc/bmalloc/BPlatform.h (219415 => 219416)


--- trunk/Source/bmalloc/bmalloc/BPlatform.h	2017-07-12 18:42:29 UTC (rev 219415)
+++ trunk/Source/bmalloc/bmalloc/BPlatform.h	2017-07-12 18:43:36 UTC (rev 219416)
@@ -123,7 +123,8 @@
 || defined(__ARM_ARCH_7S__)
 #define BARM_ARCH_VERSION 7
 
-#elif defined(__ARM_ARCH_8__)
+#elif defined(__ARM_ARCH_8__) \
+|| defined(__ARM_ARCH_8A__)
 #define BARM_ARCH_VERSION 8
 
 /* MSVC sets _M_ARM */
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to