Changeset 259344 in webkit


Ignore:
Timestamp:
Apr 1, 2020, 8:28:37 AM (5 years ago)
Author:
commit-queue@webkit.org
Message:

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

Patch by Michael Catanzaro <Michael Catanzaro> on 2020-04-01
Reviewed by Mark Lam.

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

  • bmalloc/BPlatform.h:
Location:
trunk/Source/bmalloc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/bmalloc/ChangeLog

    r258478 r259344  
     12020-04-01  Michael Catanzaro  <mcatanzaro@gnome.org>
     2
     3        Update check for aarch64
     4        https://bugs.webkit.org/show_bug.cgi?id=209322
     5        <rdar://problem/61135818>
     6
     7        Reviewed by Mark Lam.
     8
     9        Update BPlatform.h to follow the corresponding change in WTF's PlatformCPU.h.
     10
     11        * bmalloc/BPlatform.h:
     12
    1132020-03-15  Yusuke Suzuki  <ysuzuki@apple.com>
    214
  • trunk/Source/bmalloc/bmalloc/BPlatform.h

    r258142 r259344  
    124124#endif
    125125
    126 /* BCPU(ARM64) - Apple */
    127 #if (defined(__arm64__) && defined(__APPLE__)) || defined(__aarch64__)
     126/* BCPU(ARM64) */
     127#if defined(__arm64__) || defined(__aarch64__)
    128128#define BCPU_ARM64 1
    129129#endif
Note: See TracChangeset for help on using the changeset viewer.