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
Notes: sideshowbarker 2024-07-17 14:36:09 +09:00

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>