summaryrefslogtreecommitdiffstats
path: root/newlib/libm/common/s_lrint.c
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2005-06-28 17:03:18 +0000
committerJeff Johnston <jjohnstn@redhat.com>2005-06-28 17:03:18 +0000
commit25d209f13d92999221b4234b74820cb6148b5b97 (patch)
tree04f9ad4c5536a002ec587e4b299a43cc973032ff /newlib/libm/common/s_lrint.c
parentf1fb56495297ec40049e91c3232127282dde450a (diff)
downloadcygnal-25d209f13d92999221b4234b74820cb6148b5b97.tar.gz
cygnal-25d209f13d92999221b4234b74820cb6148b5b97.tar.bz2
cygnal-25d209f13d92999221b4234b74820cb6148b5b97.zip
2005-06-28 Dave Korn <dave.korn@artimi.com>
* libm/common/s_lrint.c (lrint): Fix signed-vs-unsigned comparison and miscalculation caused by fp representation of zero. * libm/common/sf_lrint.c (lrintf): Likewise.
Diffstat (limited to 'newlib/libm/common/s_lrint.c')
-rw-r--r--newlib/libm/common/s_lrint.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/newlib/libm/common/s_lrint.c b/newlib/libm/common/s_lrint.c
index 541bf2c7e..45759f194 100644
--- a/newlib/libm/common/s_lrint.c
+++ b/newlib/libm/common/s_lrint.c
@@ -54,7 +54,11 @@ TWO52[2]={
long int result;
EXTRACT_WORDS(i0,i1,x);
+
+ /* Extract sign bit. */
sx = (i0>>31)&1;
+
+ /* Extract exponent field. */
j0 = ((i0 & 0x7ff00000) >> 20) - 1023;
if(j0 < 20)
@@ -66,13 +70,17 @@ TWO52[2]={
w = TWO52[sx] + x;
t = w - TWO52[sx];
GET_HIGH_WORD(i0, t);
+ /* Detect the all-zeros representation of plus and
+ minus zero, which fails the calculation below. */
+ if ((i0 & ~(1 << 31)) == 0)
+ return 0;
j0 = ((i0 & 0x7ff00000) >> 20) - 1023;
i0 &= 0x000fffff;
i0 |= 0x00100000;
result = i0 >> (20 - j0);
}
}
- else if (j0 < (8 * sizeof (long int)) - 1)
+ else if (j0 < (int)(8 * sizeof (long int)) - 1)
{
if (j0 >= 52)
result = ((long int) i0 << (j0 - 20)) | (i1 << (j0 - 52));