We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7b501e commit ea9bf21Copy full SHA for ea9bf21
libc/src/__support/math/atanhf16.h
@@ -109,7 +109,7 @@ static constexpr float LOG_F_FLOAT[128] = {
109
// x should be positive, normal finite value
110
// TODO: Simplify range reduction and polynomial degree for float16.
111
// See issue #137190.
112
-LIBC_INLINE static constexpr float log_eval_f(float x) {
+LIBC_INLINE static float log_eval_f(float x) {
113
// For x = 2^ex * (1 + mx), logf(x) = ex * logf(2) + logf(1 + mx).
114
using FPBits = fputil::FPBits<float>;
115
FPBits xbits(x);
0 commit comments