This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_cross/gnu-master-aarch64-build_cross in repository toolchain/ci/glibc.
from e8d52b64a5 Remove unsused symbols from nptl/Versions adds e3217c7fd9 iconv: Remove alloca use in gconv-modules configuration parsing adds 23e15ea1ae gconv_conf: Remove unused variables adds d8e8097f3b gconv_conf: Split out configuration file processing adds eeac390eec iconvconfig: Use common gconv module parsing function adds f3629a4be8 Handle DT_UNKNOWN in gconv-modules.d adds 7b54aaf2ce Add NEWS item for gconv-modules.d change adds 451659ccf1 More mcheck -> malloc-check refactoring adds 03caacbc7f doc: _TIME_BITS defaults may change adds bf6749a7f8 nptl: Use SA_RESTART for SIGCANCEL handler adds 30adcf5adb hurd: Fix build after 52a5fe70a2 adds a0db678071 x86-64: Move strlen.S to multiarch/strlen-vec.S adds 6f573a27b6 x86-64: Add wcslen optimize for sse4.1 adds da5a6fba0f String: Add overflow tests for strnlen, memchr, and strncat [...] adds 645a158978 x86: Fix overflow bug with wmemchr-sse2 and wmemchr-avx2 [BZ [...] adds a775a7a3eb x86: Fix overflow bug in wcsnlen-sse4_1 and wcsnlen-avx2 [BZ [...] adds ea26ff0322 x86: Copy IBT and SHSTK usable only if CET is enabled
No new revisions were added by this update.
Summary of changes: NEWS | 18 +- Rules | 20 +- iconv/gconv_conf.c | 142 +----------- iconv/gconv_parseconfdir.h | 168 ++++++++++++++ iconv/iconvconfig.c | 123 ++--------- io/file_change_detection.c | 6 +- malloc/Makefile | 30 +-- manual/creature.texi | 57 +++-- nptl/pthread_cancel.c | 6 +- string/test-memchr.c | 39 +++- string/test-strncat.c | 61 ++++++ string/test-strnlen.c | 33 +++ sysdeps/posix/getaddrinfo.c | 3 +- sysdeps/x86/cpu-features.c | 7 +- sysdeps/x86_64/memchr.S | 77 +++++-- sysdeps/x86_64/multiarch/Makefile | 4 +- sysdeps/x86_64/multiarch/ifunc-impl-list.c | 3 + .../multiarch/{ifunc-avx2.h => ifunc-wcslen.h} | 6 +- sysdeps/x86_64/multiarch/memchr-avx2.S | 58 +++-- sysdeps/x86_64/multiarch/strlen-avx2.S | 130 +++++++---- sysdeps/x86_64/multiarch/strlen-sse2.S | 2 +- .../x86_64/{strlen.S => multiarch/strlen-vec.S} | 18 +- sysdeps/x86_64/multiarch/wcslen-sse4_1.S | 4 + sysdeps/x86_64/multiarch/wcslen.c | 2 +- sysdeps/x86_64/multiarch/wcsnlen-sse4_1.S | 2 +- sysdeps/x86_64/multiarch/wcsnlen.c | 34 +-- sysdeps/x86_64/strlen.S | 243 +-------------------- 27 files changed, 634 insertions(+), 662 deletions(-) create mode 100644 iconv/gconv_parseconfdir.h copy sysdeps/x86_64/multiarch/{ifunc-avx2.h => ifunc-wcslen.h} (89%) copy sysdeps/x86_64/{strlen.S => multiarch/strlen-vec.S} (91%) create mode 100644 sysdeps/x86_64/multiarch/wcslen-sse4_1.S