Import optimized routines changes to exp10

This commit is contained in:
Justine Tunney 2024-08-15 18:33:40 -07:00
parent 2045e87b7c
commit 3fd275f59f
No known key found for this signature in database
GPG key ID: BE714B4575D6E328

View file

@ -43,7 +43,7 @@ special_case (uint64_t sbits, double_t tmp, uint64_t ki)
{
double_t scale, y;
if (ki - (1ull << 16) < 0x80000000)
if ((ki & 0x80000000) == 0)
{
/* The exponent of scale might have overflowed by 1. */
sbits -= 1ull << 52;
@ -109,14 +109,14 @@ exp10 (double x)
/* Reduce x: z = x * N / log10(2), k = round(z). */
double_t z = __exp_data.invlog10_2N * x;
double_t kd;
int64_t ki;
uint64_t ki;
#if TOINT_INTRINSICS
kd = roundtoint (z);
ki = converttoint (z);
#else
kd = eval_as_double (z + Shift);
ki = asuint64 (kd);
kd -= Shift;
ki = kd;
#endif
/* r = x - k * log10(2), r in [-0.5, 0.5]. */