author | Szabolcs Nagy <nsz@port70.net> | 2023年01月20日 11:37:39 +0100 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2023年02月12日 17:46:50 -0500 |
commit | 35fdfe62a4ff471074ca53b7626ec80e83d244bd (patch) | |
tree | 3afc106241abc363b5a239a1c0a58ae82a02950e /src | |
parent | 7e13e5ae69a243b90b90d2f4b79b2a150f806335 (diff) | |
download | musl-35fdfe62a4ff471074ca53b7626ec80e83d244bd.tar.gz |
-rw-r--r-- | src/math/logf.c | 2 |
diff --git a/src/math/logf.c b/src/math/logf.c index 7ee5d7fe..e4c2237c 100644 --- a/src/math/logf.c +++ b/src/math/logf.c @@ -53,7 +53,7 @@ float logf(float x) tmp = ix - OFF; i = (tmp >> (23 - LOGF_TABLE_BITS)) % N; k = (int32_t)tmp >> 23; /* arithmetic shift */ - iz = ix - (tmp & 0x1ff << 23); + iz = ix - (tmp & 0xff800000); invc = T[i].invc; logc = T[i].logc; z = (double_t)asfloat(iz); |