author | Rich Felker <dalias@aerifal.cx> | 2024年01月29日 09:05:32 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2024年02月03日 19:50:58 -0500 |
commit | 0e330722c353e71ec9d1518d77278c09f39a1c55 (patch) | |
tree | b429913d802711a81c7db0af55769148110ac63a /src | |
parent | bd3138b74a06dd764508f399d1b58cb9d6c35c1f (diff) | |
download | musl-0e330722c353e71ec9d1518d77278c09f39a1c55.tar.gz |
-rw-r--r-- | src/math/sqrtl.c | 4 |
diff --git a/src/math/sqrtl.c b/src/math/sqrtl.c index 1b9f19c7..a231b3f2 100644 --- a/src/math/sqrtl.c +++ b/src/math/sqrtl.c @@ -205,7 +205,7 @@ long double sqrtl(long double x) top = (top + 0x3fff) >> 1; /* r ~ 1/sqrt(m) */ - static const uint64_t three = 0xc0000000; + const uint64_t three = 0xc0000000; uint64_t r, s, d, u, i; i = (ix.hi >> 42) % 128; r = (uint32_t)__rsqrt_tab[i] << 16; @@ -227,7 +227,7 @@ long double sqrtl(long double x) r = mul64(u, r) << 1; /* |r sqrt(m) - 1| < 0x1.c001p-59, switch to 128bit */ - static const u128 threel = {.hi=three<<32, .lo=0}; + const u128 threel = {.hi=three<<32, .lo=0}; u128 rl, sl, dl, ul; rl.hi = r; rl.lo = 0; |