Skip to content

Commit 66c769a

Browse files
committed
[libc][math] Update.
1 parent a7f41b0 commit 66c769a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/src/math/generic/atanhf16.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ LLVM_LIBC_FUNCTION(float16, atanhf16, (float16 x)) {
7272
}
7373

7474
float xf = x;
75-
return fputil::cast<float16>(0.5 * log_eval((xf + 1.0) / (xf - 1.0)));
75+
return fputil::cast<float16>(0.5f * log_eval((xf + 1.0f) / (xf - 1.0f)));
7676
}
7777

7878
} // namespace LIBC_NAMESPACE_DECL

0 commit comments

Comments
 (0)