This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository glibc.
from a6f20b6 X86: Change bit_YMM_state to (1 << 2) new ffb84f5 Prepare to convert _Complex sine functions new c50eee1 Convert _Complex sine functions to generated code new f6d3a72 Prepare to convert _Complex tangent functions new d5602ce Convert _Complex tangent functions to generated code
The 4 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: ChangeLog | 103 ++++++++++ math/Makefile | 13 +- math/k_casinh.c | 210 -------------------- math/k_casinh_template.c | 205 +++++++++++++++++++ math/k_casinhf.c | 212 -------------------- math/k_casinhl.c | 219 --------------------- math/s_casin.c | 66 ------- math/{s_casinf.c => s_casin_template.c} | 29 +-- math/{s_casinh.c => s_casinh_template.c} | 34 ++-- math/s_casinhf.c | 71 ------- math/s_casinhl.c | 69 ------- math/s_casinl.c | 62 ------ math/s_catan.c | 143 -------------- math/s_catan_template.c | 145 ++++++++++++++ math/s_catanf.c | 143 -------------- math/s_catanh.c | 137 ------------- math/s_catanh_template.c | 139 +++++++++++++ math/s_catanhf.c | 137 ------------- math/s_catanhl.c | 141 ------------- math/s_catanl.c | 147 -------------- math/s_csin.c | 171 ---------------- math/{s_csinf.c => s_csin_template.c} | 77 ++++---- math/s_csinh.c | 166 ---------------- math/{s_csinhf.c => s_csinh_template.c} | 77 ++++---- math/s_csinhl.c | 162 --------------- math/s_csinl.c | 167 ---------------- math/s_ctan.c | 129 ------------ math/{s_ctanf.c => s_ctan_template.c} | 67 ++++--- math/s_ctanh.c | 129 ------------ math/{s_ctanhf.c => s_ctanh_template.c} | 67 ++++--- math/s_ctanhl.c | 132 ------------- math/s_ctanl.c | 132 ------------- sysdeps/alpha/fpu/s_casinf.c | 12 +- sysdeps/alpha/fpu/s_casinhf.c | 12 +- sysdeps/alpha/fpu/s_catanf.c | 12 +- sysdeps/alpha/fpu/s_catanhf.c | 12 +- sysdeps/alpha/fpu/s_csinf.c | 12 +- sysdeps/alpha/fpu/s_csinhf.c | 12 +- sysdeps/alpha/fpu/s_ctanf.c | 12 +- sysdeps/alpha/fpu/s_ctanhf.c | 12 +- sysdeps/ieee754/ldbl-opt/s_casin.c | 6 - sysdeps/ieee754/ldbl-opt/s_casinh.c | 6 - sysdeps/ieee754/ldbl-opt/s_casinhl.c | 6 - sysdeps/ieee754/ldbl-opt/s_casinl.c | 6 - sysdeps/ieee754/ldbl-opt/s_catan.c | 6 - sysdeps/ieee754/ldbl-opt/s_catanh.c | 6 - sysdeps/ieee754/ldbl-opt/s_catanhl.c | 6 - sysdeps/ieee754/ldbl-opt/s_catanl.c | 6 - sysdeps/ieee754/ldbl-opt/s_csin.c | 6 - sysdeps/ieee754/ldbl-opt/s_csinh.c | 6 - sysdeps/ieee754/ldbl-opt/s_csinhl.c | 6 - sysdeps/ieee754/ldbl-opt/s_csinl.c | 6 - sysdeps/ieee754/ldbl-opt/s_ctan.c | 6 - sysdeps/ieee754/ldbl-opt/s_ctanh.c | 6 - sysdeps/ieee754/ldbl-opt/s_ctanhl.c | 6 - sysdeps/ieee754/ldbl-opt/s_ctanl.c | 6 - .../m680x0/fpu/{s_csin.c => s_csin_template.c} | 18 +- sysdeps/m68k/m680x0/fpu/s_csinf.c | 3 - .../m680x0/fpu/{s_csinh.c => s_csinh_template.c} | 17 +- sysdeps/m68k/m680x0/fpu/s_csinhf.c | 3 - sysdeps/m68k/m680x0/fpu/s_csinhl.c | 3 - sysdeps/m68k/m680x0/fpu/s_csinl.c | 3 - 62 files changed, 857 insertions(+), 3283 deletions(-) delete mode 100644 math/k_casinh.c create mode 100644 math/k_casinh_template.c delete mode 100644 math/k_casinhf.c delete mode 100644 math/k_casinhl.c delete mode 100644 math/s_casin.c rename math/{s_casinf.c => s_casin_template.c} (75%) rename math/{s_casinh.c => s_casinh_template.c} (71%) delete mode 100644 math/s_casinhf.c delete mode 100644 math/s_casinhl.c delete mode 100644 math/s_casinl.c delete mode 100644 math/s_catan.c create mode 100644 math/s_catan_template.c delete mode 100644 math/s_catanf.c delete mode 100644 math/s_catanh.c create mode 100644 math/s_catanh_template.c delete mode 100644 math/s_catanhf.c delete mode 100644 math/s_catanhl.c delete mode 100644 math/s_catanl.c delete mode 100644 math/s_csin.c rename math/{s_csinf.c => s_csin_template.c} (65%) delete mode 100644 math/s_csinh.c rename math/{s_csinhf.c => s_csinh_template.c} (62%) delete mode 100644 math/s_csinhl.c delete mode 100644 math/s_csinl.c delete mode 100644 math/s_ctan.c rename math/{s_ctanf.c => s_ctan_template.c} (64%) delete mode 100644 math/s_ctanh.c rename math/{s_ctanhf.c => s_ctanh_template.c} (64%) delete mode 100644 math/s_ctanhl.c delete mode 100644 math/s_ctanl.c delete mode 100644 sysdeps/ieee754/ldbl-opt/s_casin.c delete mode 100644 sysdeps/ieee754/ldbl-opt/s_casinh.c delete mode 100644 sysdeps/ieee754/ldbl-opt/s_casinhl.c delete mode 100644 sysdeps/ieee754/ldbl-opt/s_casinl.c delete mode 100644 sysdeps/ieee754/ldbl-opt/s_catan.c delete mode 100644 sysdeps/ieee754/ldbl-opt/s_catanh.c delete mode 100644 sysdeps/ieee754/ldbl-opt/s_catanhl.c delete mode 100644 sysdeps/ieee754/ldbl-opt/s_catanl.c delete mode 100644 sysdeps/ieee754/ldbl-opt/s_csin.c delete mode 100644 sysdeps/ieee754/ldbl-opt/s_csinh.c delete mode 100644 sysdeps/ieee754/ldbl-opt/s_csinhl.c delete mode 100644 sysdeps/ieee754/ldbl-opt/s_csinl.c delete mode 100644 sysdeps/ieee754/ldbl-opt/s_ctan.c delete mode 100644 sysdeps/ieee754/ldbl-opt/s_ctanh.c delete mode 100644 sysdeps/ieee754/ldbl-opt/s_ctanhl.c delete mode 100644 sysdeps/ieee754/ldbl-opt/s_ctanl.c rename sysdeps/m68k/m680x0/fpu/{s_csin.c => s_csin_template.c} (86%) delete mode 100644 sysdeps/m68k/m680x0/fpu/s_csinf.c rename sysdeps/m68k/m680x0/fpu/{s_csinh.c => s_csinh_template.c} (88%) delete mode 100644 sysdeps/m68k/m680x0/fpu/s_csinhf.c delete mode 100644 sysdeps/m68k/m680x0/fpu/s_csinhl.c delete mode 100644 sysdeps/m68k/m680x0/fpu/s_csinl.c