Appease shift vs substract warning for clang.
This commit is contained in:
parent
9d8dce6eca
commit
7ad1c4e7c0
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue