diff options
| author | Joseph Myers <josmyers@redhat.com> | 2024-12-11 21:51:49 +0000 |
|---|---|---|
| committer | Joseph Myers <josmyers@redhat.com> | 2024-12-11 21:51:49 +0000 |
| commit | ffe79c446ced76d7c1a77804ff2cc32eccbc7c7e (patch) | |
| tree | fa436fea1f0eebeb843ae0c16df84f120f859eb3 /math/gen-auto-libm-tests.c | |
| parent | aec85b2557cdb2cc1fc726a50c33848826f00f4d (diff) | |
| download | glibc-ffe79c446ced76d7c1a77804ff2cc32eccbc7c7e.tar.xz glibc-ffe79c446ced76d7c1a77804ff2cc32eccbc7c7e.zip | |
Implement C23 atanpi
C23 adds various <math.h> function families originally defined in TS
18661-4. Add the atanpi functions (atan(x)/pi).
Tested for x86_64 and x86, and with build-many-glibcs.py.
Diffstat (limited to 'math/gen-auto-libm-tests.c')
| -rw-r--r-- | math/gen-auto-libm-tests.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/math/gen-auto-libm-tests.c b/math/gen-auto-libm-tests.c index 4185f46c16..4cedf5967f 100644 --- a/math/gen-auto-libm-tests.c +++ b/math/gen-auto-libm-tests.c @@ -539,6 +539,7 @@ static test_function test_functions[] = FUNC_mpfr_f_f ("atan", mpfr_atan, false), FUNC_mpfr_ff_f ("atan2", mpfr_atan2, false), FUNC_mpfr_f_f ("atanh", mpfr_atanh, false), + FUNC_mpfr_f_f ("atanpi", mpfr_atanpi, false), FUNC_mpc_c_f ("cabs", mpc_abs, false), FUNC_mpc_c_c ("cacos", mpc_acos, false), FUNC_mpc_c_c ("cacosh", mpc_acosh, false), |
