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-331-g40e5391


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  40e53917ea9e92ac14ada7bf177f419e5c0855ef (commit)
       via  1ea166df67e4fa6b62fa3fa1ca03a990d0f45eba (commit)
      from  acf869f4bcc1750da9a04371690d107c0d7a3189 (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=40e53917ea9e92ac14ada7bf177f419e5c0855ef

commit 40e53917ea9e92ac14ada7bf177f419e5c0855ef
Author: Stefan Liebler <stli@linux.vnet.ibm.com>
Date:   Thu Dec 11 17:03:37 2014 +0100

    Get rid of warning inlining failed in call to maybe_swap_uint32

diff --git a/ChangeLog b/ChangeLog
index d622ff0..b002146 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2014-12-11  Stefan Liebler  <stli@linux.vnet.ibm.com>
 
+	* locale/programs/locfile.h (maybe_swap_uint32):
+	Remove inline and add unused attribute.
+
+2014-12-11  Stefan Liebler  <stli@linux.vnet.ibm.com>
+
 	sysdeps/s390/s390-32/dl-machine.h (elf_machine_load_address):
 	Truncating assembler expression to a .long expression.
 
diff --git a/locale/programs/locfile.h b/locale/programs/locfile.h
index b579a46..dd00c0d 100644
--- a/locale/programs/locfile.h
+++ b/locale/programs/locfile.h
@@ -81,7 +81,8 @@ set_big_endian (bool big_endian)
 
 /* Munge VALUE so that, when stored, it has the correct byte order
    for the output files.  */
-static inline uint32_t
+static uint32_t
+__attribute__ ((unused))
 maybe_swap_uint32 (uint32_t value)
 {
   return swap_endianness_p ? bswap_32 (value) : value;

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

commit 1ea166df67e4fa6b62fa3fa1ca03a990d0f45eba
Author: Stefan Liebler <stli@linux.vnet.ibm.com>
Date:   Thu Dec 11 17:02:24 2014 +0100

    S/390: Get rid of assembler warning value truncated.

diff --git a/ChangeLog b/ChangeLog
index 8ded7cb..d622ff0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-12-11  Stefan Liebler  <stli@linux.vnet.ibm.com>
+
+	sysdeps/s390/s390-32/dl-machine.h (elf_machine_load_address):
+	Truncating assembler expression to a .long expression.
+
 2014-12-11  Andreas Schwab  <schwab@suse.de>
 
 	* elf/rtld.c (struct map_args): Constify str member.
diff --git a/sysdeps/s390/s390-32/dl-machine.h b/sysdeps/s390/s390-32/dl-machine.h
index 6780405..72fb7fe 100644
--- a/sysdeps/s390/s390-32/dl-machine.h
+++ b/sysdeps/s390/s390-32/dl-machine.h
@@ -72,7 +72,7 @@ elf_machine_load_address (void)
 
   asm( "   bras  1,2f\n"
        "1: .long _GLOBAL_OFFSET_TABLE_ - 1b\n"
-       "   .long _dl_start - 1b - 0x80000000\n"
+       "   .long (_dl_start - 1b - 0x80000000) & 0x00000000ffffffff\n"
        "2: l     %0,4(1)\n"
        "   ar    %0,1\n"
        "   al    1,0(1)\n"

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

Summary of changes:
 ChangeLog                         |   10 ++++++++++
 locale/programs/locfile.h         |    3 ++-
 sysdeps/s390/s390-32/dl-machine.h |    2 +-
 3 files changed, 13 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]