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

AK: Add generic sincos solution for non-x86 platforms

This commit is contained in:
serenityosrocks 2022-04-01 20:46:32 -07:00 committed by Linus Groh
parent ea9857a423
commit 4a6a7cf3c8

View file

@ -245,10 +245,14 @@ constexpr void sincos(T angle, T& sin_val, T& cos_val)
cos_val = cos(angle);
return;
}
#if ARCH(I386) || ARCH(X86_64)
asm(
"fsincos"
: "=t"(cos_val), "=u"(sin_val)
: "0"(angle));
#else
__builtin_sincosf(angle, sin_val, cos_val);
#endif
}
template<FloatingPoint T>