mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +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:
committed by
Andreas Kling
parent
11b40dbcf5
commit
4536b80a62
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user