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 d7fd63e commit 0bf1456Copy full SHA for 0bf1456
libc/src/math/generic/tanf16.cpp
@@ -50,7 +50,7 @@ LLVM_LIBC_FUNCTION(float16, tanf16, (float16 x)) {
50
51
// |x| <= 0x1.d1p-5
52
if (LIBC_UNLIKELY(x_abs <= 0x2b44)) {
53
- // |x| <= 1.398p-11
+ // |x| <= 0x1.398p-11
54
if (LIBC_UNLIKELY(x_abs <= 0x10e6)) {
55
// tan(+/-0) = +/-0
56
if (LIBC_UNLIKELY(x_abs == 0))
0 commit comments