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 a6aca86 commit 2df9c7aCopy full SHA for 2df9c7a
libc/src/math/generic/atanhf16.cpp
@@ -72,7 +72,7 @@ LLVM_LIBC_FUNCTION(float16, atanhf16, (float16 x)) {
72
}
73
74
float xf = x;
75
- return fputil::cast<float16>(0.5 * log_eval((xf + 1.0) / (xf - 1.0)));
+ return fputil::cast<float16>(0.5f * log_eval((xf + 1.0f) / (xf - 1.0f)));
76
77
78
} // namespace LIBC_NAMESPACE_DECL
0 commit comments