diff options
author | Ondřej Bílka <neleai@seznam.cz> | 2015-01-06 17:43:09 +0100 |
---|---|---|
committer | Ondřej Bílka <neleai@seznam.cz> | 2015-01-06 17:43:09 +0100 |
commit | 9300797ee93422a87f443d5ba7e1411167e7a837 (patch) | |
tree | 83b460c32baade3967321f81c1c77ca79c195708 /string/tester.c | |
parent | dc8ab018328ae2c6a67af0b9693f08949dd8906e (diff) | |
download | glibc-9300797ee93422a87f443d5ba7e1411167e7a837.tar.gz glibc-9300797ee93422a87f443d5ba7e1411167e7a837.tar.xz glibc-9300797ee93422a87f443d5ba7e1411167e7a837.zip |
Suppress warning in string/tester.c for gcc 4.9
Diffstat (limited to 'string/tester.c')
-rw-r--r-- | string/tester.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/string/tester.c b/string/tester.c index f957ed29d4..64dc056084 100644 --- a/string/tester.c +++ b/string/tester.c @@ -1305,10 +1305,10 @@ test_memset (void) equal(one, "axxxefgh", 2); /* Basic test. */ DIAG_PUSH_NEEDS_COMMENT; -#if __GNUC_PREREQ (5, 0) - /* GCC 5.0 warns about a zero-length memset because the arguments to memset +#if __GNUC_PREREQ (4, 9) + /* GCC 4.9 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 (5.0, "-Wmemset-transposed-args") + DIAG_IGNORE_NEEDS_COMMENT (4.9, "-Wmemset-transposed-args") #endif (void) memset(one+2, 'y', 0); equal(one, "axxxefgh", 3); /* Zero-length set. */ |