This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.20-490-g500bfbd


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  500bfbd4922902ea278adab06e58b77eb355ba82 (commit)
      from  1cf98e27a7280b55f42aae191b6083d71e42e993 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=500bfbd4922902ea278adab06e58b77eb355ba82

commit 500bfbd4922902ea278adab06e58b77eb355ba82
Author: OndÅ?ej Bílka <neleai@seznam.cz>
Date:   Tue Jan 6 18:43:28 2015 +0100

    Revert "Suppress warning in string/tester.c for gcc 4.9"
    
    This reverts commit 9300797ee93422a87f443d5ba7e1411167e7a837.

diff --git a/ChangeLog b/ChangeLog
index fdd7253..cb65294 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
diff --git a/string/tester.c b/string/tester.c
index 64dc056..f957ed2 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 (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. */

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog       |    1 -
 string/tester.c |    6 +++---
 2 files changed, 3 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]