1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-09-02 16:01:20 +03:00

Fix ldbl-128ibm atanl spurious underflows (bug 14871).

This commit is contained in:
Joseph Myers
2012-11-22 19:56:47 +00:00
parent 79c9b9feb4
commit 0a42601f27
4 changed files with 30 additions and 1 deletions

View File

@@ -1195,6 +1195,14 @@ atan_test (void)
TEST_f_f (atan, 0.75L, 0.643501108793284386802809228717322638L);
TEST_f_f (atan, 0x1p-100L, 0x1p-100L);
#ifndef TEST_FLOAT
TEST_f_f (atan, 0x1p-600L, 0x1p-600L);
#endif
#if defined TEST_LDOUBLE && LDBL_MIN_EXP <= -16381
TEST_f_f (atan, 0x1p-10000L, 0x1p-10000L);
#endif
END (atan);
}