Skip to content

Commit 7711e5e

Browse files
committed
Address comment.
1 parent b15580b commit 7711e5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/src/math/generic/asin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ LLVM_LIBC_FUNCTION(double, asin, (double x)) {
9696
// Recalculate mod 1/64.
9797
idx = static_cast<unsigned>(fputil::nearest_integer(x_sq.hi * 0x1.0p6));
9898

99-
// Get x^2 - idx/21 exactly. When FMA is available, double-double
99+
// Get x^2 - idx/64 exactly. When FMA is available, double-double
100100
// multiplication will be correct for all rounding modes. Otherwise we use
101101
// Float128 directly.
102102
Float128 x_f128(x);

0 commit comments

Comments
 (0)