Appease shift vs substract warning for clang.

This commit is contained in:
joerg 2012-10-27 06:55:54 +00:00
parent 9d8dce6eca
commit 7ad1c4e7c0
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ mpn_get_d (mp_srcptr up, mp_size_t size, mp_size_t sign, long exp)
x <<= GMP_NAIL_BITS;
mhi |= x >> nbits >> 11;
mlo = x << GMP_LIMB_BITS - nbits - 11;
mlo = x << (GMP_LIMB_BITS - nbits - 11);
nbits = nbits + 11 - GMP_NAIL_BITS;
}
else