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

AK+readelf: Issue error when using ARCH(arch) with nonexistent arch

This disallows erroneous `#if ARCH(x86_64)` (note lowercase x).
This commit is contained in:
Dan Klishch 2023-03-02 14:47:03 +03:00 committed by Andreas Kling
parent 11b40dbcf5
commit 4536b80a62
3 changed files with 14 additions and 5 deletions

View file

@ -77,7 +77,7 @@ ALWAYS_INLINE static f32x4 exp_approximate(f32x4 v)
ALWAYS_INLINE static f32x4 sqrt(f32x4 v)
{
#if ARCH(x86_64)
#if ARCH(X86_64)
return __builtin_ia32_sqrtps(v);
#else
return f32x4 {
@ -91,7 +91,7 @@ ALWAYS_INLINE static f32x4 sqrt(f32x4 v)
ALWAYS_INLINE static f32x4 rsqrt(f32x4 v)
{
#if ARCH(x86_64)
#if ARCH(X86_64)
return __builtin_ia32_rsqrtps(v);
#else
return f32x4 {