Skip to content

Commit e43a97e

Browse files
committed
wrong poly_coeffs size
1 parent 29b09d1 commit e43a97e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/src/math/generic/asinpif16.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ LLVM_LIBC_FUNCTION(float16, asinpif16, (float16 x)) {
6868
//
6969
// it's very accurate in the range [0, 0.5] and has a maximum error of
7070
// 0.0000000000000001 in the range [0, 0.5].
71-
constexpr double POLY_COEFFS[10] = {
71+
constexpr double POLY_COEFFS[] = {
7272
0x1.45f306dc9c889p-2, // x^1
7373
0x1.b2995e7b7b5fdp-5, // x^3
7474
0x1.8723a1d588a36p-6, // x^5

0 commit comments

Comments
 (0)