[libc-commits] [PATCH] D132811: [libc][math] Added atanhf function.
Tue Ly via Phabricator via libc-commits
libc-commits at lists.llvm.org
Mon Aug 29 13:16:22 PDT 2022
lntue accepted this revision.
lntue added inline comments.
================
Comment at: libc/src/math/generic/atanhf.cpp:21
+
+ // 0 >= 1.0
+ if (unlikely(x_abs >= 0x3F80'0000U)) {
----------------
`|x| >= 1.0` ?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D132811/new/
https://reviews.llvm.org/D132811
More information about the libc-commits
mailing list