This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository glibc.
from fd1cf1d SPARC64: update localplt.data new ee2196b Fixed wrong vector sincos/sincosf ABI to have it compatible w [...]
The 1 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 | 39 +++ sysdeps/x86/fpu/test-math-vector-sincos.h | 98 ++++++ sysdeps/x86_64/fpu/Makefile | 48 ++- .../fpu/multiarch/svml_d_sincos2_core_sse4.S | 56 +++- .../fpu/multiarch/svml_d_sincos4_core_avx2.S | 98 +++++- .../fpu/multiarch/svml_d_sincos8_core_avx512.S | 180 ++++++++++- .../fpu/multiarch/svml_s_sincosf16_core_avx512.S | 310 ++++++++++++++++++- .../fpu/multiarch/svml_s_sincosf4_core_sse4.S | 80 ++++- .../fpu/multiarch/svml_s_sincosf8_core_avx2.S | 152 +++++++++- sysdeps/x86_64/fpu/svml_d_sincos2_core.S | 83 ++++- sysdeps/x86_64/fpu/svml_d_sincos4_core.S | 125 +++++++- sysdeps/x86_64/fpu/svml_d_sincos4_core_avx.S | 120 +++++++- sysdeps/x86_64/fpu/svml_d_sincos8_core.S | 201 ++++++++++++- sysdeps/x86_64/fpu/svml_s_sincosf16_core.S | 335 ++++++++++++++++++++- sysdeps/x86_64/fpu/svml_s_sincosf4_core.S | 126 +++++++- sysdeps/x86_64/fpu/svml_s_sincosf8_core.S | 173 ++++++++++- sysdeps/x86_64/fpu/svml_s_sincosf8_core_avx.S | 179 ++++++++++- .../x86_64/fpu/test-double-libmvec-sincos-avx.c | 1 + .../x86_64/fpu/test-double-libmvec-sincos-avx2.c | 1 + .../x86_64/fpu/test-double-libmvec-sincos-avx512.c | 1 + ...ibmvec-alias.c => test-double-libmvec-sincos.c} | 48 ++- sysdeps/x86_64/fpu/test-double-vlen2-wrappers.c | 6 +- .../x86_64/fpu/test-double-vlen4-avx2-wrappers.c | 10 +- sysdeps/x86_64/fpu/test-double-vlen4-wrappers.c | 10 +- sysdeps/x86_64/fpu/test-double-vlen8-wrappers.c | 10 +- .../x86_64/fpu/test-float-libmvec-sincosf-avx.c | 1 + .../x86_64/fpu/test-float-libmvec-sincosf-avx2.c | 1 + .../x86_64/fpu/test-float-libmvec-sincosf-avx512.c | 1 + ...ibmvec-alias.c => test-float-libmvec-sincosf.c} | 48 ++- sysdeps/x86_64/fpu/test-float-vlen16-wrappers.c | 10 +- sysdeps/x86_64/fpu/test-float-vlen4-wrappers.c | 10 +- .../x86_64/fpu/test-float-vlen8-avx2-wrappers.c | 13 +- sysdeps/x86_64/fpu/test-float-vlen8-wrappers.c | 10 +- 33 files changed, 2537 insertions(+), 47 deletions(-) create mode 100644 sysdeps/x86/fpu/test-math-vector-sincos.h create mode 100644 sysdeps/x86_64/fpu/test-double-libmvec-sincos-avx.c create mode 100644 sysdeps/x86_64/fpu/test-double-libmvec-sincos-avx2.c create mode 100644 sysdeps/x86_64/fpu/test-double-libmvec-sincos-avx512.c copy sysdeps/x86_64/fpu/{test-float-libmvec-alias.c => test-double-libmvec-sincos. [...] create mode 100644 sysdeps/x86_64/fpu/test-float-libmvec-sincosf-avx.c create mode 100644 sysdeps/x86_64/fpu/test-float-libmvec-sincosf-avx2.c create mode 100644 sysdeps/x86_64/fpu/test-float-libmvec-sincosf-avx512.c copy sysdeps/x86_64/fpu/{test-float-libmvec-alias.c => test-float-libmvec-sincosf. [...]