From 1721f0a406e52f976f9daf6f59acf42c1dbd33ff Mon Sep 17 00:00:00 2001 From: Siddhesh Poyarekar Date: Thu, 27 Nov 2014 11:15:45 +0530 Subject: Don't use __warn_memset_zero_len for gcc-5.0 or newer gcc now warns when the arguments to memset may have been accidentally transposed (i.e. length set to zero instead of the byte), so we don't need that bit of the code in glibc headers anymore. Tested on x86_64. Coe generated by gcc 4.8 is identical with or without the patch. I also tested gcc master, which does not result in any new failures. It does fail quite a few FORTIFY_SOURCE tests, but those failures are not due to this patch. --- ChangeLog | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index ab2220d9ea..4acdcc3ced 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2014-11-27 Siddhesh Poyarekar + + * string/bits/string3.h (__warn_memset_zero_len): Don't + declare for gcc newer than 5.0. + (memset): Don't test for zero-length __LEN for gcc newer than + 5.0. + 2014-11-27 Joseph Myers * stdio-common/tst-fmemopen.c (do_test): Cast st_size values to -- cgit 1.4.1