diff options
author | Will Newton <will.newton@linaro.org> | 2014-07-07 15:14:26 +0100 |
---|---|---|
committer | Will Newton <will.newton@linaro.org> | 2014-07-09 09:26:07 +0100 |
commit | 82374e65d745c3c94258ad81c38f8af34b9f9113 (patch) | |
tree | fd5e15e5b29c5b73fcfb883c9c88ffa61502c573 /ChangeLog | |
parent | 6ee3eab42979fdd5bb971a40fec32e04bb9dd2ad (diff) | |
download | glibc-82374e65d745c3c94258ad81c38f8af34b9f9113.tar.gz glibc-82374e65d745c3c94258ad81c38f8af34b9f9113.tar.xz glibc-82374e65d745c3c94258ad81c38f8af34b9f9113.zip |
Fix -Wundef warnings for SHARED
The definition of SHARED is tested with #ifdef pretty much everywhere apart from these few places. The tlsdesc.c code seems to be copy and pasted to a few architectures and there is one instance in the hppa startup code. ChangeLog: 2014-07-09 Will Newton <will.newton@linaro.org> * sysdeps/aarch64/tlsdesc.c (_dl_unmap): Test SHARED with #ifdef. * sysdeps/arm/tlsdesc.c (_dl_unmap): Likewise. * sysdeps/i386/tlsdesc.c (_dl_unmap): Likewise. * sysdeps/x86_64/tlsdesc.c (_dl_unmap): Likewise. * sysdeps/hppa/start.S (_start): Likewise.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 0773d7ce18..2ac8b8a635 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2014-07-09 Will Newton <will.newton@linaro.org> + + * sysdeps/aarch64/tlsdesc.c (_dl_unmap): Test SHARED with #ifdef. + * sysdeps/arm/tlsdesc.c (_dl_unmap): Likewise. + * sysdeps/i386/tlsdesc.c (_dl_unmap): Likewise. + * sysdeps/x86_64/tlsdesc.c (_dl_unmap): Likewise. + * sysdeps/hppa/start.S (_start): Likewise. + 2014-07-09 Siddhesh Poyarekar <siddhesh@redhat.com> * sunrpc/xdr.c (xdr_string): Initialize SIZE to 0. |