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.19-699-gb97c9ce


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  b97c9ce50d5d004285fc43c3f99b27630a155c5f (commit)
       via  741711156782780e56a97988178cfa33541070df (commit)
      from  e64708de3674314ee73a490d9d3e36b59e61612a (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=b97c9ce50d5d004285fc43c3f99b27630a155c5f

commit b97c9ce50d5d004285fc43c3f99b27630a155c5f
Author: Siddhesh Poyarekar <siddhesh@redhat.com>
Date:   Fri Jun 27 00:01:37 2014 +0530

    Remove unnecessary include in memmove_chk
    
    This also has the side-effect of fixing a couple of Wundef warnings
    raised from pagecopy.h.  The generated code is identical before and
    after this patch.

diff --git a/ChangeLog b/ChangeLog
index 506eaed..44f96bb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2014-06-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
 
+	* debug/memmove_chk.c: Remove pagecopy.h include.
+
 	* time/mktime.c (leapyear): Remove inline keyword.  The code is now
 	identical to gnulib mktime.
 
diff --git a/debug/memmove_chk.c b/debug/memmove_chk.c
index f8c4454..10eb632 100644
--- a/debug/memmove_chk.c
+++ b/debug/memmove_chk.c
@@ -20,7 +20,6 @@
 
 #include <string.h>
 #include <memcopy.h>
-#include <pagecopy.h>
 
 #ifndef MEMMOVE_CHK
 # define MEMMOVE_CHK __memmove_chk

http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=741711156782780e56a97988178cfa33541070df

commit 741711156782780e56a97988178cfa33541070df
Author: Siddhesh Poyarekar <siddhesh@redhat.com>
Date:   Fri Jun 27 00:00:06 2014 +0530

    Remove inline keyword from leapyear function
    
    This syncs up the code with gnulib.

diff --git a/ChangeLog b/ChangeLog
index 4b26a77..506eaed 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-06-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
+
+	* time/mktime.c (leapyear): Remove inline keyword.  The code is now
+	identical to gnulib mktime.
+
 2014-06-26  Joseph Myers  <joseph@codesourcery.com>
 
 	* configure.ac: Do not test for machine being rs6000.  Do not test
diff --git a/time/mktime.c b/time/mktime.c
index 963e4b9..f10e530 100644
--- a/time/mktime.c
+++ b/time/mktime.c
@@ -142,7 +142,7 @@ verify (twos_complement_arithmetic,
 verify (base_year_is_a_multiple_of_100, TM_YEAR_BASE % 100 == 0);
 
 /* Return 1 if YEAR + TM_YEAR_BASE is a leap year.  */
-static inline int
+static int
 leapyear (long_int year)
 {
   /* Don't add YEAR to TM_YEAR_BASE, as that might overflow.

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

Summary of changes:
 ChangeLog           |    7 +++++++
 debug/memmove_chk.c |    1 -
 time/mktime.c       |    2 +-
 3 files changed, 8 insertions(+), 2 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]