Changeset 259332 in webkit


Ignore:
Timestamp:
Mar 31, 2020 7:06:50 PM (4 years ago)
Author:
commit-queue@webkit.org
Message:

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

Patch by Michael Catanzaro <Michael Catanzaro> 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:
Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r259316 r259332  
     12020-03-31  Michael Catanzaro  <mcatanzaro@gnome.org>
     2
     3        Update check for aarch64
     4        https://bugs.webkit.org/show_bug.cgi?id=209322
     5
     6        Reviewed by Mark Lam.
     7
     8        CPU(ARM64) is used on Linux, so checking to avoid Apple platforms doesn't make much sense.
     9        The comment implying that this is an Apple architecture also no longer makes sense.
     10
     11        * wtf/PlatformCPU.h:
     12
    1132020-03-31  Sihui Liu  <sihui_liu@apple.com>
    214
  • trunk/Source/WTF/wtf/PlatformCPU.h

    r254728 r259332  
    113113#endif
    114114
    115 /* CPU(ARM64) - Apple */
    116 #if (defined(__arm64__) && defined(__APPLE__)) || defined(__aarch64__)
     115/* CPU(ARM64) */
     116#if defined(__arm64__) || defined(__aarch64__)
    117117#define WTF_CPU_ARM64 1
    118118#define WTF_CPU_KNOWN 1
Note: See TracChangeset for help on using the changeset viewer.