Title: [259344] trunk/Source/bmalloc
Revision
259344
Author
commit-qu...@webkit.org
Date
2020-04-01 08:28:37 -0700 (Wed, 01 Apr 2020)

Log Message

Update check for aarch64
https://bugs.webkit.org/show_bug.cgi?id=209322
<rdar://problem/61135818>

Patch by Michael Catanzaro <mcatanz...@gnome.org> on 2020-04-01
Reviewed by Mark Lam.

Update BPlatform.h to follow the corresponding change in WTF's PlatformCPU.h.

* bmalloc/BPlatform.h:

Modified Paths

Diff

Modified: trunk/Source/bmalloc/ChangeLog (259343 => 259344)


--- trunk/Source/bmalloc/ChangeLog	2020-04-01 14:44:31 UTC (rev 259343)
+++ trunk/Source/bmalloc/ChangeLog	2020-04-01 15:28:37 UTC (rev 259344)
@@ -1,3 +1,15 @@
+2020-04-01  Michael Catanzaro  <mcatanz...@gnome.org>
+
+        Update check for aarch64
+        https://bugs.webkit.org/show_bug.cgi?id=209322
+        <rdar://problem/61135818>
+
+        Reviewed by Mark Lam.
+
+        Update BPlatform.h to follow the corresponding change in WTF's PlatformCPU.h.
+
+        * bmalloc/BPlatform.h:
+
 2020-03-15  Yusuke Suzuki  <ysuz...@apple.com>
 
         Should not use variable-length-array (VLA)

Modified: trunk/Source/bmalloc/bmalloc/BPlatform.h (259343 => 259344)


--- trunk/Source/bmalloc/bmalloc/BPlatform.h	2020-04-01 14:44:31 UTC (rev 259343)
+++ trunk/Source/bmalloc/bmalloc/BPlatform.h	2020-04-01 15:28:37 UTC (rev 259344)
@@ -123,8 +123,8 @@
 #define BCPU_X86_64 1
 #endif
 
-/* BCPU(ARM64) - Apple */
-#if (defined(__arm64__) && defined(__APPLE__)) || defined(__aarch64__)
+/* BCPU(ARM64) */
+#if defined(__arm64__) || defined(__aarch64__)
 #define BCPU_ARM64 1
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to