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
commit 97b7e494e4
Notes: sideshowbarker 2024-07-17 08:37:36 +09:00
7 changed files with 29 additions and 29 deletions

View file

@ -62,7 +62,7 @@ void _entry(int, char**, char**) __attribute__((used));
NAKED void _start(int, char**, char**)
{
#ifdef AK_ARCH_AARCH64
#if ARCH(AARCH64)
asm(
"bl _entry\n");
#else