Changeset 259344 in webkit
- Timestamp:
- Apr 1, 2020, 8:28:37 AM (5 years ago)
- Location:
- trunk/Source/bmalloc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/bmalloc/ChangeLog
r258478 r259344 1 2020-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 1 13 2020-03-15 Yusuke Suzuki <ysuzuki@apple.com> 2 14 -
trunk/Source/bmalloc/bmalloc/BPlatform.h
r258142 r259344 124 124 #endif 125 125 126 /* BCPU(ARM64) - Apple*/127 #if (defined(__arm64__) && defined(__APPLE__)) || defined(__aarch64__)126 /* BCPU(ARM64) */ 127 #if defined(__arm64__) || defined(__aarch64__) 128 128 #define BCPU_ARM64 1 129 129 #endif
Note:
See TracChangeset
for help on using the changeset viewer.