This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch hjl/gold in repository glibc.
discards a06e7bf9af Add --enable-gold to allow gold for glibc build adds 95b38bbb03 localedata: fur_IT: Fix spelling of Wednesday (Miercus) adds 5ae2266943 Provide an additional macro expansion for F128 in stdlib/tst [...] adds 5070551cbf Describe remainder as primary and drem as alternative in the manual adds 738a9914a0 benchtests: Print string array elements, int and uint in json adds 5ee1e3cebc benchtests: Make memcpy benchmarks print results in json adds 25d5247277 benchtests: New script to parse memcpy results adds 5dee08fda6 Add ChangeLog entries for the last 3 commits adds 33711da4e9 Fix float128 uses of xlocale.h. adds 46d2e49c49 Make errno-setting libm templates include errno.h. adds d08cdabdd0 Correct min_of_type handling of _Float128. adds db7a548d02 Make float128_private.h work with generic ieee754.h. adds f20079d219 Fix float128_private.h redefinition of SET_RESTORE_ROUNDL. adds 8d375dafe2 Support _Float128 in math-tests.h. adds c271ff9469 Support _Float128 in ldbl-96 bits/iscanonical.h. adds 001b09a6a2 powerpc: Add optimized version of [l]lroundf adds 12f50337ae powerpc: refactor strrchr IFUNC new ecbaf760a0 Allow gold to configire glibc
This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this:
* -- * -- B -- O -- O -- O (a06e7bf9af) \ N -- N -- N refs/heads/hjl/gold (ecbaf760a0)
You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B.
Any revisions marked "omits" are not gone; other references still refer to them. Any revisions marked "discards" are gone forever.
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 | 118 +++++++++++++++++++ benchtests/bench-memcpy-large.c | 49 +++++--- benchtests/bench-memcpy-random.c | 42 +++++-- benchtests/bench-memcpy.c | 75 +++++++----- benchtests/json-lib.c | 62 ++++++++++ benchtests/json-lib.h | 6 + benchtests/scripts/benchout_strings.schema.json | 44 +++++++ benchtests/scripts/compare_strings.py | 129 +++++++++++++++++++++ configure | 85 ++++++++++---- configure.ac | 22 +--- localedata/ChangeLog | 5 + localedata/locales/fur_IT | 4 +- manual/arith.texi | 24 ++-- math/w_acos_template.c | 1 + math/w_acosh_template.c | 1 + math/w_asin_template.c | 1 + math/w_atanh_template.c | 1 + math/w_cosh_template.c | 1 + math/w_exp10_template.c | 1 + math/w_exp2_template.c | 1 + math/w_exp_template.c | 1 + math/w_fmod_template.c | 1 + math/w_hypot_template.c | 1 + math/w_j0_template.c | 1 + math/w_j1_template.c | 1 + math/w_jn_template.c | 1 + math/w_lgamma_r_template.c | 1 + math/w_lgamma_template.c | 1 + math/w_log10_template.c | 1 + math/w_log2_template.c | 1 + math/w_log_template.c | 1 + math/w_pow_template.c | 1 + math/w_remainder_template.c | 1 + math/w_sinh_template.c | 1 + math/w_sqrt_template.c | 1 + math/w_tgamma_template.c | 1 + stdlib/tst-strtod.h | 6 +- sysdeps/generic/math-tests.h | 42 +++++-- sysdeps/generic/math_private.h | 4 +- sysdeps/ieee754/float128/float128_private.h | 6 +- sysdeps/ieee754/float128/strtof128_l.c | 2 +- sysdeps/ieee754/float128/wcstof128.c | 2 +- sysdeps/ieee754/float128/wcstof128_l.c | 2 +- sysdeps/ieee754/ldbl-96/bits/iscanonical.h | 3 + sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile | 2 +- .../fpu/multiarch/s_llroundf-ppc64.S} | 9 +- .../fpu/multiarch/{s_llrintf.c => s_llroundf.c} | 36 +++--- .../powerpc/powerpc64/multiarch/strrchr-power8.S | 18 +-- sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S | 7 ++ sysdeps/powerpc/powerpc64/power5+/fpu/s_llroundf.S | 1 + sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S | 7 ++ sysdeps/powerpc/powerpc64/power6x/fpu/s_llroundf.S | 1 + sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S | 7 ++ sysdeps/powerpc/powerpc64/power8/fpu/s_llroundf.S | 1 + sysdeps/powerpc/powerpc64/power8/strrchr.S | 8 +- 55 files changed, 692 insertions(+), 160 deletions(-) create mode 100644 benchtests/scripts/benchout_strings.schema.json create mode 100755 benchtests/scripts/compare_strings.py copy sysdeps/powerpc/{powerpc32/power4/fpu/multiarch/s_floor-ppc32.S => powerpc64/ [...] copy sysdeps/powerpc/powerpc64/fpu/multiarch/{s_llrintf.c => s_llroundf.c} (60%) create mode 100644 sysdeps/powerpc/powerpc64/power5+/fpu/s_llroundf.S create mode 100644 sysdeps/powerpc/powerpc64/power6x/fpu/s_llroundf.S create mode 100644 sysdeps/powerpc/powerpc64/power8/fpu/s_llroundf.S