]> sourceware.org Git - glibc.git/commitdiff
Get rid of warning inlining failed in call to maybe_swap_uint32
authorStefan Liebler <stli@linux.vnet.ibm.com>
Thu, 11 Dec 2014 16:03:37 +0000 (17:03 +0100)
committerAndreas Krebbel <krebbel@linux.vnet.ibm.com>
Thu, 11 Dec 2014 16:04:40 +0000 (17:04 +0100)
ChangeLog
locale/programs/locfile.h

index d622ff0c48ca08c3da6a212106b5e81cae6fd7d2..b00214660cc93d21c6c0a5a11d4521d71e1bda65 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+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):
index b579a4626c81b2656ade33241bb83b762af2d2dc..dd00c0dfb2320de79d31b36bb7f875ca8ca01a43 100644 (file)
@@ -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;
This page took 0.1207 seconds and 5 git commands to generate.