This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch zack/explicit-bzero in repository glibc.
discards 7aff261 Use explicit_bzero where appropriate discards 0e28fad Add fortification support for explicit_bzero. discards 9d17da5 New string function explicit_bzero (from OpenBSD). discards b8ac6c7 Add tests for fortification of bcopy and bzero. adds d9067fc Do not override objects in libc.a in other static libraries [ [...] adds 1f64557 nptl/tst-once5: Reduce time to expected failure adds ce6698e Support for type-generic libm function implementations libm adds ee19f1d ldbl-128: Remove unused sqrtl declaration in e_asinl.c adds 2c82053 argp: Do not override GCC keywords with macros [BZ #16907] adds b65f0b7 Get rid of array-bounds warning in __kernel_rem_pio2[f] with [...] new 175b79d Add tests for fortification of bcopy and bzero. new f97024c New string function explicit_bzero (from OpenBSD). new 52fa397 Add fortification support for explicit_bzero. new 77d8b5d Use explicit_bzero where appropriate new a4eb2c4 Add a test for explicit_bzero not getting optimized out.
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 (7aff261) \ N -- N -- N refs/heads/zack/explicit-bzero (a4eb2c4)
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 5 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 | 109 ++++++ argp/argp-fmtstream.h | 19 +- argp/argp.h | 42 +-- math/Makefile | 31 +- math/{cabs.c => cabs_template.c} | 17 +- math/cabsf.c | 28 -- math/cabsl.c | 28 -- math/{carg.c => carg_template.c} | 17 +- math/cargf.c | 28 -- math/cargl.c | 28 -- math/{cimag.c => cimag_template.c} | 15 +- math/cimagf.c | 27 -- math/cimagl.c | 27 -- math/{conj.c => conj_template.c} | 15 +- math/conjf.c | 27 -- math/conjl.c | 27 -- math/{creal.c => creal_template.c} | 15 +- math/crealf.c | 27 -- math/creall.c | 27 -- nptl/tst-once5.cc | 2 + string/Makefile | 2 +- string/tst-xbzero-opt.c | 383 +++++++++++++++++++++ sysdeps/generic/math-type-macros-double.h | 45 +++ .../generic/math-type-macros-float.h | 33 +- .../generic/math-type-macros-ldouble.h | 28 +- sysdeps/generic/math-type-macros.h | 121 +++++++ sysdeps/ia64/nptl/Makefile | 1 + sysdeps/ieee754/dbl-64/k_rem_pio2.c | 10 + sysdeps/ieee754/flt-32/k_rem_pio2f.c | 10 + sysdeps/ieee754/ldbl-128/e_asinl.c | 1 - sysdeps/ieee754/ldbl-opt/cabs.c | 6 - sysdeps/ieee754/ldbl-opt/cabsl.c | 6 - sysdeps/ieee754/ldbl-opt/carg.c | 6 - sysdeps/ieee754/ldbl-opt/cargl.c | 6 - sysdeps/ieee754/ldbl-opt/cimag.c | 6 - sysdeps/ieee754/ldbl-opt/cimagl.c | 6 - sysdeps/ieee754/ldbl-opt/conj.c | 6 - sysdeps/ieee754/ldbl-opt/conjl.c | 6 - sysdeps/ieee754/ldbl-opt/creal.c | 6 - sysdeps/ieee754/ldbl-opt/creall.c | 6 - sysdeps/ieee754/ldbl-opt/math-type-macros-double.h | 58 ++++ .../ieee754/ldbl-opt/math-type-macros-ldouble.h | 25 +- sysdeps/mips/Makefile | 1 + sysdeps/mips/nptl/Makefile | 1 + sysdeps/s390/nptl/Makefile | 1 + sysdeps/unix/alpha/Makefile | 1 + sysdeps/unix/sysv/linux/alpha/Makefile | 1 + sysdeps/unix/sysv/linux/i386/Makefile | 1 + sysdeps/unix/sysv/linux/ia64/Makefile | 1 + sysdeps/unix/sysv/linux/microblaze/Makefile | 3 +- sysdeps/unix/sysv/linux/powerpc/Makefile | 2 + sysdeps/unix/sysv/linux/s390/Makefile | 1 + sysdeps/unix/sysv/linux/sparc/Makefile | 2 + sysdeps/unix/sysv/linux/tile/Makefile | 1 + 54 files changed, 875 insertions(+), 474 deletions(-) copy math/{cabs.c => cabs_template.c} (77%) delete mode 100644 math/cabsf.c delete mode 100644 math/cabsl.c rename math/{carg.c => carg_template.c} (79%) delete mode 100644 math/cargf.c delete mode 100644 math/cargl.c rename math/{cimag.c => cimag_template.c} (82%) delete mode 100644 math/cimagf.c delete mode 100644 math/cimagl.c rename math/{conj.c => conj_template.c} (81%) delete mode 100644 math/conjf.c delete mode 100644 math/conjl.c rename math/{creal.c => creal_template.c} (82%) delete mode 100644 math/crealf.c delete mode 100644 math/creall.c create mode 100644 string/tst-xbzero-opt.c create mode 100644 sysdeps/generic/math-type-macros-double.h copy math/cabs.c => sysdeps/generic/math-type-macros-float.h (59%) copy math/cabs.c => sysdeps/generic/math-type-macros-ldouble.h (63%) create mode 100644 sysdeps/generic/math-type-macros.h delete mode 100644 sysdeps/ieee754/ldbl-opt/cabs.c delete mode 100644 sysdeps/ieee754/ldbl-opt/cabsl.c delete mode 100644 sysdeps/ieee754/ldbl-opt/carg.c delete mode 100644 sysdeps/ieee754/ldbl-opt/cargl.c delete mode 100644 sysdeps/ieee754/ldbl-opt/cimag.c delete mode 100644 sysdeps/ieee754/ldbl-opt/cimagl.c delete mode 100644 sysdeps/ieee754/ldbl-opt/conj.c delete mode 100644 sysdeps/ieee754/ldbl-opt/conjl.c delete mode 100644 sysdeps/ieee754/ldbl-opt/creal.c delete mode 100644 sysdeps/ieee754/ldbl-opt/creall.c create mode 100644 sysdeps/ieee754/ldbl-opt/math-type-macros-double.h rename math/cabs.c => sysdeps/ieee754/ldbl-opt/math-type-macros-ldouble.h (63%)