This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository glibc.
from 3d20d746c3 Linux: fix tst-copy_file_range-large test on 32-bit platforms. new d1509f2ce3 math: Use acosh from CORE-MATH new 30e66b085c math: Use asinh from CORE-MATH new 79b70fc09f math: Use atanh from CORE-MATH new cb8d1575b6 math: Consolidate acosh and asinh internal table new 140e802cb3 math: Move atanh internal data to separate file new d67d2f4688 math: Use lgamma from CORE-MATH new 1cae0550e8 math: Use tgamma from CORE-MATH new 72a48e45bd math: Use erf from CORE-MATH new acaad9ab06 math: Use erfc from CORE-MATH new fc419290f9 math: Consolidate internal erf/erfc tables new e4d812c980 math: Consolidate erf/erfc definitions new 013f5167b9 math: Consolidate CORE-MATH double-double routines
The 12 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 | 14 + math/Makefile | 14 +- math/auto-libm-test-in | 6 + math/auto-libm-test-out-erf | 138 ++ math/auto-libm-test-out-erfc | 69 + sysdeps/i386/Makefile | 11 +- sysdeps/i386/fpu/libm-test-ulps | 39 + sysdeps/ieee754/dbl-64/ddcoremath.h | 213 ++ sysdeps/ieee754/dbl-64/e_acosh.c | 444 +++- sysdeps/ieee754/dbl-64/e_atanh.c | 278 ++- sysdeps/ieee754/dbl-64/e_gamma_r.c | 1434 +++++++++++-- sysdeps/ieee754/dbl-64/e_lgamma_r.c | 2241 +++++++++++++++++--- sysdeps/ieee754/dbl-64/gamma_product.c | 46 - sysdeps/ieee754/dbl-64/gamma_productf.c | 1 - sysdeps/ieee754/dbl-64/lgamma_neg.c | 385 ---- sysdeps/ieee754/dbl-64/lgamma_product.c | 52 - sysdeps/ieee754/dbl-64/libm-test-ulps | 84 + sysdeps/ieee754/dbl-64/math_config.h | 36 + sysdeps/ieee754/dbl-64/math_err.c | 31 + sysdeps/ieee754/dbl-64/s_asincosh_data.c | 124 ++ .../e_sincoshf_data.h => dbl-64/s_asincosh_data.h} | 38 +- sysdeps/ieee754/dbl-64/s_asinh.c | 467 +++- sysdeps/ieee754/dbl-64/s_atanh_data.c | 243 +++ sysdeps/ieee754/dbl-64/s_atanh_data.h | 66 + sysdeps/ieee754/dbl-64/s_erf.c | 410 ++-- sysdeps/ieee754/dbl-64/s_erf_common.c | 170 ++ sysdeps/ieee754/dbl-64/s_erf_common.h | 80 + sysdeps/ieee754/dbl-64/s_erf_data.c | 1557 ++++++++++++++ sysdeps/ieee754/dbl-64/s_erf_data.h | 56 + sysdeps/ieee754/dbl-64/s_erfc.c | 791 +++++-- sysdeps/ieee754/dbl-64/s_erfc_data.c | 355 ++++ .../s_asincospif_data.h => dbl-64/s_erfc_data.h} | 31 +- sysdeps/ieee754/flt-32/lgamma_negf.c | 1 - sysdeps/ieee754/flt-32/lgamma_productf.c | 1 - sysdeps/ieee754/ldbl-96/gamma_product.c | 44 - sysdeps/ieee754/ldbl-96/lgamma_product.c | 37 - 36 files changed, 8304 insertions(+), 1703 deletions(-) create mode 100644 sysdeps/ieee754/dbl-64/ddcoremath.h delete mode 100644 sysdeps/ieee754/dbl-64/gamma_product.c delete mode 100644 sysdeps/ieee754/dbl-64/gamma_productf.c delete mode 100644 sysdeps/ieee754/dbl-64/lgamma_neg.c delete mode 100644 sysdeps/ieee754/dbl-64/lgamma_product.c create mode 100644 sysdeps/ieee754/dbl-64/libm-test-ulps create mode 100644 sysdeps/ieee754/dbl-64/s_asincosh_data.c copy sysdeps/ieee754/{flt-32/e_sincoshf_data.h => dbl-64/s_asincosh_data.h} (57%) create mode 100644 sysdeps/ieee754/dbl-64/s_atanh_data.c create mode 100644 sysdeps/ieee754/dbl-64/s_atanh_data.h create mode 100644 sysdeps/ieee754/dbl-64/s_erf_common.c create mode 100644 sysdeps/ieee754/dbl-64/s_erf_common.h create mode 100644 sysdeps/ieee754/dbl-64/s_erf_data.c create mode 100644 sysdeps/ieee754/dbl-64/s_erf_data.h create mode 100644 sysdeps/ieee754/dbl-64/s_erfc_data.c copy sysdeps/ieee754/{flt-32/s_asincospif_data.h => dbl-64/s_erfc_data.h} (54%) delete mode 100644 sysdeps/ieee754/flt-32/lgamma_negf.c delete mode 100644 sysdeps/ieee754/flt-32/lgamma_productf.c delete mode 100644 sysdeps/ieee754/ldbl-96/gamma_product.c delete mode 100644 sysdeps/ieee754/ldbl-96/lgamma_product.c