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.25-81-gb2f3c0c


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  b2f3c0c208f73cf5c433ebb85aacf3284d9e47e6 (commit)
      from  a10e9c4e53fc652b79abf838f7f837589d2c84db (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=b2f3c0c208f73cf5c433ebb85aacf3284d9e47e6

commit b2f3c0c208f73cf5c433ebb85aacf3284d9e47e6
Author: Florian Weimer <fweimer@redhat.com>
Date:   Fri Mar 3 09:06:54 2017 +0100

    tzset: Remove __attribute_noinline__ from compute_offset
    
    After commit 42261ad731991df345880b0b509d83b0b9a9b9d8,
    compute_offset is only called once, so not inlining it
    increases executable size.

diff --git a/ChangeLog b/ChangeLog
index 56ef827..240b3e8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2017-03-03  Florian Weimer  <fweimer@redhat.com>
+
+	* time/tzset.c (compute_offset): Remove __attribute_noinline__.
+
 2017-03-02  Florian Weimer  <fweimer@redhat.com>
 
 	* elf/get-dynamic-info.h: Remove header file inclusion guard.
diff --git a/time/tzset.c b/time/tzset.c
index eb42069..404f1db 100644
--- a/time/tzset.c
+++ b/time/tzset.c
@@ -168,7 +168,6 @@ update_vars (void)
 
 
 static unsigned int
-__attribute_noinline__
 compute_offset (unsigned int ss, unsigned int mm, unsigned int hh)
 {
   return min (ss, 59) + min (mm, 59) * 60 + min (hh, 24) * 60 * 60;

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

Summary of changes:
 ChangeLog    |    4 ++++
 time/tzset.c |    1 -
 2 files changed, 4 insertions(+), 1 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]