1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:57:44 +00:00

AK: Remove i686 support

This commit is contained in:
Liav A 2022-10-04 03:32:20 +03:00 committed by Andreas Kling
parent 91db482ad3
commit feeb25bcee
5 changed files with 26 additions and 38 deletions

View file

@ -94,7 +94,7 @@
#define ARCH(arch) (defined(AK_ARCH_##arch) && AK_ARCH_##arch)
#if ARCH(I386) || ARCH(X86_64)
#if ARCH(X86_64)
# define VALIDATE_IS_X86()
#else
# define VALIDATE_IS_X86() static_assert(false, "Trying to include x86 only header on non x86 platform");