Title: [259332] trunk/Source/WTF
Revision
259332
Author
[email protected]
Date
2020-03-31 19:06:50 -0700 (Tue, 31 Mar 2020)

Log Message

Update check for aarch64
https://bugs.webkit.org/show_bug.cgi?id=209322

Patch by Michael Catanzaro <[email protected]> on 2020-03-31
Reviewed by Mark Lam.

CPU(ARM64) is used on Linux, so checking to avoid Apple platforms doesn't make much sense.
The comment implying that this is an Apple architecture also no longer makes sense.

* wtf/PlatformCPU.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (259331 => 259332)


--- trunk/Source/WTF/ChangeLog	2020-04-01 01:42:53 UTC (rev 259331)
+++ trunk/Source/WTF/ChangeLog	2020-04-01 02:06:50 UTC (rev 259332)
@@ -1,3 +1,15 @@
+2020-03-31  Michael Catanzaro  <[email protected]>
+
+        Update check for aarch64
+        https://bugs.webkit.org/show_bug.cgi?id=209322
+
+        Reviewed by Mark Lam.
+
+        CPU(ARM64) is used on Linux, so checking to avoid Apple platforms doesn't make much sense.
+        The comment implying that this is an Apple architecture also no longer makes sense.
+
+        * wtf/PlatformCPU.h:
+
 2020-03-31  Sihui Liu  <[email protected]>
 
         IndexedDB: destroy WebIDBServer when session is removed in network process

Modified: trunk/Source/WTF/wtf/PlatformCPU.h (259331 => 259332)


--- trunk/Source/WTF/wtf/PlatformCPU.h	2020-04-01 01:42:53 UTC (rev 259331)
+++ trunk/Source/WTF/wtf/PlatformCPU.h	2020-04-01 02:06:50 UTC (rev 259332)
@@ -112,8 +112,8 @@
 #define WTF_CPU_KNOWN 1
 #endif
 
-/* CPU(ARM64) - Apple */
-#if (defined(__arm64__) && defined(__APPLE__)) || defined(__aarch64__)
+/* CPU(ARM64) */
+#if defined(__arm64__) || defined(__aarch64__)
 #define WTF_CPU_ARM64 1
 #define WTF_CPU_KNOWN 1
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to