1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 16:27:35 +00:00

Everywhere: Use ARCH(AARCH64) instead of AK_ARCH_AARCH64

The former is typo-resistant after 349e54d5375a4a, so make use of that.
This commit is contained in:
Nico Weber 2023-04-14 10:44:17 -04:00 committed by Linus Groh
parent 50f42407f6
commit 97b7e494e4
7 changed files with 29 additions and 29 deletions

View file

@ -148,7 +148,7 @@
#ifdef NAKED
# undef NAKED
#endif
#ifndef AK_ARCH_AARCH64
#if !ARCH(AARCH64)
# define NAKED __attribute__((naked))
#else
# define NAKED