Revert "Suppress warning in string/tester.c for gcc 4.9"

This reverts commit 9300797ee9.
This commit is contained in:
Ondřej Bílka 2015-01-06 18:43:28 +01:00
parent 1cf98e27a7
commit 500bfbd492
2 changed files with 3 additions and 4 deletions

View File

@ -13,7 +13,6 @@
* sysdeps/unix/sysv/linux/check_pf.c (make_request):
Clean up check_pf allocation pattern. addresses
* string/tester.c (test_memset): Suppress warning for gcc 4.9
2015-01-06 Adhemerval Zanella <azanella@linux.vnet.ibm.com>

View File

@ -1305,10 +1305,10 @@ test_memset (void)
equal(one, "axxxefgh", 2); /* Basic test. */
DIAG_PUSH_NEEDS_COMMENT;
#if __GNUC_PREREQ (4, 9)
/* GCC 4.9 warns about a zero-length memset because the arguments to memset
#if __GNUC_PREREQ (5, 0)
/* GCC 5.0 warns about a zero-length memset because the arguments to memset
may be in the wrong order. But we really want to test this. */
DIAG_IGNORE_NEEDS_COMMENT (4.9, "-Wmemset-transposed-args")
DIAG_IGNORE_NEEDS_COMMENT (5.0, "-Wmemset-transposed-args")
#endif
(void) memset(one+2, 'y', 0);
equal(one, "axxxefgh", 3); /* Zero-length set. */