Fix strtold on 32-bit sparc (and probably others) (BZ #16965)
commit4406c41c1d6088abf01c216e49700cd3f8f01fcc
authorAurelien Jarno <aurelien@aurel32.net>
Tue, 20 May 2014 12:41:44 +0000 (20 14:41 +0200)
committerAurelien Jarno <aurelien@aurel32.net>
Tue, 20 May 2014 16:44:28 +0000 (20 18:44 +0200)
tree6f257fdf8bf4d27212a380a049548f24cdf7f389
parentae75a883f2eb312165d1e1f423cea320f3c92ef5
Fix strtold on 32-bit sparc (and probably others) (BZ #16965)

This patch fixes an issue observed running the tst-strtod-round test on
32 bit sparc. In some conditions, strtold calls round_and_return, which in
turn calls __mpn_rshift with cnt = 0, while stdlib/rshift.c explicitly says
that cnts should satisfy 0 < CNT < BITS_PER_MP_LIMB. In this case, the code
end up doing a logical shift right of the same amount than the register,
which is undefined in the C standard.

Due to this bug, 32-bit sparc does not correctly convert the value
"0x1p-16446", but it is likely that other architectures are also
affected for other input values.
ChangeLog
NEWS
stdlib/strtod_l.c