diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2014-12-19 05:28:06 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2014-12-19 05:32:39 -0800 |
commit | c9c1a2d02cf344697c08075a44c170f771ebc6b2 (patch) | |
tree | 629ce20837bf562e981e207b3ff458ea1683eb39 /ChangeLog | |
parent | e54db0ea6a49affac43fa305fd134f3020c41382 (diff) | |
download | glibc-c9c1a2d02cf344697c08075a44c170f771ebc6b2.tar glibc-c9c1a2d02cf344697c08075a44c170f771ebc6b2.tar.gz glibc-c9c1a2d02cf344697c08075a44c170f771ebc6b2.tar.bz2 glibc-c9c1a2d02cf344697c08075a44c170f771ebc6b2.zip |
Replace 1L with (mp_limb_t) 1
X86-64 and x32 use sysdeps/i386/ldbl2mpn.c. res_ptr is a pointer
to mp_limb_t, which is long for i386 and x86-64 and long long for
x32. On x32, I got
../sysdeps/x86_64/../i386/ldbl2mpn.c: In function ‘__mpn_extract_long_double’:
../sysdeps/x86_64/../i386/ldbl2mpn.c:72:4: error: left shift count >= width of type [-Werror]
res_ptr[N - 1] &= ~(1L << ((LDBL_MANT_DIG - 1) % BITS_PER_MP_LIMB));
^
cc1: all warnings being treated as errors
This patch replaces 1L with (mp_limb_t) 1. Verified on x32, i686 and
x86-64 with GCC 4.8.3.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2014-12-19 H.J. Lu <hongjiu.lu@intel.com> + + * sysdeps/i386/ldbl2mpn.c (__mpn_extract_long_double): Replace + 1L with (mp_limb_t) 1. + 2014-12-17 Roland McGrath <roland@hack.frob.com> * sysdeps/nptl/fork.c (__fork_generation_pointer): Variable moved ... |