aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Liebler <stli@linux.vnet.ibm.com>2014-12-11 17:03:37 +0100
committerAndreas Krebbel <krebbel@linux.vnet.ibm.com>2014-12-11 17:04:40 +0100
commit40e53917ea9e92ac14ada7bf177f419e5c0855ef (patch)
tree63511f42e83fd391c0990cb8f4c63c61a87f2bef
parent1ea166df67e4fa6b62fa3fa1ca03a990d0f45eba (diff)
downloadglibc-40e53917ea9e92ac14ada7bf177f419e5c0855ef.zip
glibc-40e53917ea9e92ac14ada7bf177f419e5c0855ef.tar.gz
glibc-40e53917ea9e92ac14ada7bf177f419e5c0855ef.tar.bz2
Get rid of warning inlining failed in call to maybe_swap_uint32
-rw-r--r--ChangeLog5
-rw-r--r--locale/programs/locfile.h3
2 files changed, 7 insertions, 1 deletions
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;