This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository glibc.
from 392261a2b6 hurd: Replace char foo[1024] with string_t new 3e0e782b29 benchtests: Add acospif new 082ffa4ddc benchtests: Add asinpif new ec9d2f3066 benchtests: Add atan2pif new 1700d306d4 benchtests: Add atanpif new 180e97bee6 benchtests: Add cospif new 10370a4d00 benchtests: Add sinpif new 57d1fc9971 benchtests: Add tanpif new edb2a8f0ae math: Use acospif from CORE-MATH new ae679a0aca math: Use asinpif from CORE-MATH new 1cd9ccd8c0 math: Use atan2pif from CORE-MATH new 95a01ea955 math: Use atanpif from CORE-MATH new be85208b9f math: Use cospif from CORE-MATH new de2fca9fe2 math: Use sinpif from CORE-MATH new 8f170dc819 math: Use tanpif from CORE-MATH new 994007ff29 math: Consolidate acoshf and asinhf internal tables new b81252c4b9 math: Consolidate coshf and sinhf internal tables
The 16 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: SHARED-FILES | 28 + benchtests/Makefile | 7 + benchtests/acospif-inputs | 2710 ++++++++++++++++++++++++ benchtests/asinpif-inputs | 2710 ++++++++++++++++++++++++ benchtests/{atan2f-inputs => atan2pif-inputs} | 0 benchtests/{atanf-inputs => atanpif-inputs} | 0 benchtests/cospif-inputs | 2409 +++++++++++++++++++++ benchtests/sinpif-inputs | 2409 +++++++++++++++++++++ benchtests/tanpif-inputs | 2409 +++++++++++++++++++++ math/Makefile | 2 + math/auto-libm-test-in | 1 + math/auto-libm-test-out-atanpi | 25 + sysdeps/aarch64/libm-test-ulps | 28 - sysdeps/arc/fpu/libm-test-ulps | 28 - sysdeps/arc/nofpu/libm-test-ulps | 7 - sysdeps/arm/libm-test-ulps | 28 - sysdeps/hppa/fpu/libm-test-ulps | 28 - sysdeps/i386/fpu/libm-test-ulps | 28 - sysdeps/i386/i686/fpu/multiarch/libm-test-ulps | 28 - sysdeps/ieee754/flt-32/e_acoshf.c | 111 +- sysdeps/ieee754/flt-32/e_coshf.c | 38 +- sysdeps/ieee754/flt-32/e_sincoshf_data.c | 49 + sysdeps/ieee754/flt-32/e_sincoshf_data.h | 36 + sysdeps/ieee754/flt-32/e_sinhf.c | 37 +- sysdeps/ieee754/flt-32/math_config.h | 25 + sysdeps/ieee754/flt-32/s_acospif.c | 137 ++ sysdeps/ieee754/flt-32/s_asincoshf_data.c | 121 ++ sysdeps/ieee754/flt-32/s_asincoshf_data.h | 36 + sysdeps/ieee754/flt-32/s_asinhf.c | 109 +- sysdeps/ieee754/flt-32/s_asinpif.c | 137 ++ sysdeps/ieee754/flt-32/s_atan2pif.c | 238 +++ sysdeps/ieee754/flt-32/s_atanpif.c | 109 + sysdeps/ieee754/flt-32/s_cospif.c | 136 ++ sysdeps/ieee754/flt-32/s_sinpif.c | 134 ++ sysdeps/ieee754/flt-32/s_tanpif.c | 90 + sysdeps/loongarch/lp64/libm-test-ulps | 28 - sysdeps/mips/mips64/libm-test-ulps | 28 - sysdeps/or1k/fpu/libm-test-ulps | 28 - sysdeps/or1k/nofpu/libm-test-ulps | 7 - sysdeps/powerpc/fpu/libm-test-ulps | 28 - sysdeps/powerpc/fpu/math_private.h | 1 + sysdeps/riscv/nofpu/libm-test-ulps | 7 - sysdeps/riscv/rvd/libm-test-ulps | 28 - sysdeps/s390/fpu/libm-test-ulps | 28 - sysdeps/sparc/fpu/libm-test-ulps | 28 - sysdeps/x86_64/fpu/libm-test-ulps | 28 - 46 files changed, 13991 insertions(+), 676 deletions(-) create mode 100644 benchtests/acospif-inputs create mode 100644 benchtests/asinpif-inputs copy benchtests/{atan2f-inputs => atan2pif-inputs} (100%) copy benchtests/{atanf-inputs => atanpif-inputs} (100%) create mode 100644 benchtests/cospif-inputs create mode 100644 benchtests/sinpif-inputs create mode 100644 benchtests/tanpif-inputs create mode 100644 sysdeps/ieee754/flt-32/e_sincoshf_data.c create mode 100644 sysdeps/ieee754/flt-32/e_sincoshf_data.h create mode 100644 sysdeps/ieee754/flt-32/s_acospif.c create mode 100644 sysdeps/ieee754/flt-32/s_asincoshf_data.c create mode 100644 sysdeps/ieee754/flt-32/s_asincoshf_data.h create mode 100644 sysdeps/ieee754/flt-32/s_asinpif.c create mode 100644 sysdeps/ieee754/flt-32/s_atan2pif.c create mode 100644 sysdeps/ieee754/flt-32/s_atanpif.c create mode 100644 sysdeps/ieee754/flt-32/s_cospif.c create mode 100644 sysdeps/ieee754/flt-32/s_sinpif.c create mode 100644 sysdeps/ieee754/flt-32/s_tanpif.c