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 3324213125 elf: Always set l in _dl_init_paths (bug 23462) adds f53ffc9b90 x86: Handle _SC_LEVEL1_ICACHE_LINESIZE [BZ #27444] adds 4e6db99c66 elf: ld.so --help calls _dl_init_paths without a main map [B [...] adds 95c68080a3 support: Typo and formatting fixes adds 03f42a56eb Add inhibit_stack_protector to ifuncmain9 [BZ #25680] adds 941ea10f80 Build get-cpuid-feature-leaf.c without stack-protector [BZ #27555] adds 8b8f13b60d Build libc-start with stack protector for SHARED new c82e691c56 powerpc: Update libm-test-ulps new e958490f8c support: Pass environ to child process new 4b7259555c Legacy unwinder: Remove definition of _Unwind_GetCFA new b9e2903712 scripts/glibcsymbols.py: Extract from scripts/move-symbol-to [...] new 3977477d48 glibcymbols.read_abilist: Add check for duplicate symbols new 56c81132cc powerpc: Add optimized ilogb* for POWER9 new a7d88506c2 powerpc: Add optimized llogb* for POWER9 new 6cf1911122 benchtests: Add ilogb* tests
The 8 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: Makeconfig | 8 +++ benchtests/Makefile | 4 +- benchtests/ilogb-inputs | 11 +++ benchtests/ilogbf-inputs | 11 +++ benchtests/ilogbf128-inputs | 11 +++ csu/Makefile | 22 +++--- elf/Makefile | 22 ++++-- elf/dl-load.c | 8 ++- elf/ifuncmain9.c | 1 + scripts/glibcsymbols.py | 83 ++++++++++++++++++++++ scripts/move-symbol-to-libc.py | 75 ++++--------------- support/support_capture_subprocess.c | 2 +- support/support_subprocess.c | 8 +-- sysdeps/generic/unwind-dw2.c | 8 --- sysdeps/powerpc/fpu/libm-test-ulps | 2 +- sysdeps/powerpc/fpu/math_private.h | 26 ++++++- .../powerpc/powerpc64/le/fpu/w_ilogb_template.c | 30 ++++++++ sysdeps/powerpc/powerpc64/le/fpu/w_ilogbl.c | 4 ++ .../powerpc/powerpc64/le/fpu/w_llogb_template.c | 39 ++++++++++ sysdeps/powerpc/powerpc64/le/fpu/w_llogbl.c | 4 ++ sysdeps/x86/Makefile | 10 +++ sysdeps/x86/cacheinfo.c | 3 + sysdeps/x86/dl-cacheinfo.h | 6 ++ sysdeps/x86/dl-diagnostics-cpu.c | 2 + sysdeps/x86/include/cpu-features.h | 2 + sysdeps/x86/tst-ifunc-isa.h | 2 + sysdeps/x86/tst-sysconf-cache-linesize-static.c | 1 + sysdeps/x86/tst-sysconf-cache-linesize.c | 57 +++++++++++++++ 28 files changed, 366 insertions(+), 96 deletions(-) create mode 100644 benchtests/ilogb-inputs create mode 100644 benchtests/ilogbf-inputs create mode 100644 benchtests/ilogbf128-inputs create mode 100644 scripts/glibcsymbols.py create mode 100644 sysdeps/powerpc/powerpc64/le/fpu/w_ilogb_template.c create mode 100644 sysdeps/powerpc/powerpc64/le/fpu/w_ilogbl.c create mode 100644 sysdeps/powerpc/powerpc64/le/fpu/w_llogb_template.c create mode 100644 sysdeps/powerpc/powerpc64/le/fpu/w_llogbl.c create mode 100644 sysdeps/x86/tst-sysconf-cache-linesize-static.c create mode 100644 sysdeps/x86/tst-sysconf-cache-linesize.c