diff options
author | Joseph Myers <joseph@codesourcery.com> | 2019-06-10 22:12:08 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2019-06-10 22:12:08 +0000 |
commit | e6e24243905957c36596f50a22af0acfd83793e2 (patch) | |
tree | 59a8709521107ec13118a52a96488501c5608b67 /ChangeLog | |
parent | 51ea67d54882318c4fa5394c386f4816ddc22408 (diff) | |
download | glibc-e6e24243905957c36596f50a22af0acfd83793e2.tar glibc-e6e24243905957c36596f50a22af0acfd83793e2.tar.gz glibc-e6e24243905957c36596f50a22af0acfd83793e2.tar.bz2 glibc-e6e24243905957c36596f50a22af0acfd83793e2.zip |
Fix malloc tests build with GCC 10.
GCC mainline has recently added warn_unused_result attributes to some
malloc-like built-in functions, where glibc previously had them in its
headers only for __USE_FORTIFY_LEVEL > 0. This results in those
attributes being newly in effect for building the glibc testsuite, so
resulting in new warnings that break the build where tests
deliberately call such functions and ignore the result. Thus patch
duly adds calls to DIAG_* macros around those calls to disable the
warning.
Tested with build-many-glibcs.py for aarch64-linux-gnu.
* malloc/tst-calloc.c: Include <libc-diag.h>.
(null_test): Ignore -Wunused-result around calls to calloc.
* malloc/tst-mallocfork.c: Include <libc-diag.h>.
(do_test): Ignore -Wunused-result around call to malloc.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,10 @@ +2019-06-10 Joseph Myers <joseph@codesourcery.com> + + * malloc/tst-calloc.c: Include <libc-diag.h>. + (null_test): Ignore -Wunused-result around calls to calloc. + * malloc/tst-mallocfork.c: Include <libc-diag.h>. + (do_test): Ignore -Wunused-result around call to malloc. + 2019-06-07 Florian Weimer <fweimer@redhat.com> Linux: Add getdents64 system call. |