diff options
author | stefanf <stefanf@FreeBSD.org> | 2005-04-22 09:57:55 +0000 |
---|---|---|
committer | stefanf <stefanf@FreeBSD.org> | 2005-04-22 09:57:55 +0000 |
commit | 13322eaf9bf51b3cb07a19237fea84cdd013e9e1 (patch) | |
tree | f73917ead846bd897f9a3fa7d6384ec9600355f1 /lib/msun/src | |
parent | 1268b440dc549568fa58865671762f02df1f70a4 (diff) | |
download | FreeBSD-src-13322eaf9bf51b3cb07a19237fea84cdd013e9e1.zip FreeBSD-src-13322eaf9bf51b3cb07a19237fea84cdd013e9e1.tar.gz |
Use double additions to raise the inexact exception to work around problems
with long double addition on sparc64.
Diffstat (limited to 'lib/msun/src')
-rw-r--r-- | lib/msun/src/s_ceill.c | 8 | ||||
-rw-r--r-- | lib/msun/src/s_floorl.c | 8 | ||||
-rw-r--r-- | lib/msun/src/s_truncl.c | 8 |
3 files changed, 12 insertions, 12 deletions
diff --git a/lib/msun/src/s_ceill.c b/lib/msun/src/s_ceill.c index 1de973b..6abbe10 100644 --- a/lib/msun/src/s_ceill.c +++ b/lib/msun/src/s_ceill.c @@ -50,7 +50,7 @@ static char rcsid[] = "$FreeBSD$"; } while (0) #endif -static const long double huge = 1.0e300; +static const double huge = 1.0e300; long double ceill(long double x) @@ -60,7 +60,7 @@ ceill(long double x) if (e < MANH_SIZE - 1) { if (e < 0) { /* raise inexact if x != 0 */ - if (huge + x > 0.0) + if (huge + (double)x > 0.0) if (u.bits.exp > 0 || (u.bits.manh | u.bits.manl) != 0) u.e = u.bits.sign ? 0.0 : 1.0; @@ -76,7 +76,7 @@ ceill(long double x) #endif INC_MANH(u, 1llu << (MANH_SIZE - e - 1)); } - if (huge + x > 0.0) { /* raise inexact flag */ + if (huge + (double)x > 0.0) { /* raise inexact flag */ u.bits.manh &= ~m; u.bits.manl = 0; } @@ -95,7 +95,7 @@ ceill(long double x) INC_MANH(u, 1); } } - if (huge + x > 0.0) /* raise inexact flag */ + if (huge + (double)x > 0.0) /* raise inexact flag */ u.bits.manl &= ~m; } return (u.e); diff --git a/lib/msun/src/s_floorl.c b/lib/msun/src/s_floorl.c index 9dd13b6..d7d3fcf 100644 --- a/lib/msun/src/s_floorl.c +++ b/lib/msun/src/s_floorl.c @@ -50,7 +50,7 @@ static char rcsid[] = "$FreeBSD$"; } while (0) #endif -static const long double huge = 1.0e300; +static const double huge = 1.0e300; long double floorl(long double x) @@ -60,7 +60,7 @@ floorl(long double x) if (e < MANH_SIZE - 1) { if (e < 0) { /* raise inexact if x != 0 */ - if (huge + x > 0.0) + if (huge + (double)x > 0.0) if (u.bits.exp > 0 || (u.bits.manh | u.bits.manl) != 0) u.e = u.bits.sign ? -1.0 : 0.0; @@ -76,7 +76,7 @@ floorl(long double x) #endif INC_MANH(u, 1llu << (MANH_SIZE - e - 1)); } - if (huge + x > 0.0) { /* raise inexact flag */ + if (huge + (double)x > 0.0) { /* raise inexact flag */ u.bits.manh &= ~m; u.bits.manl = 0; } @@ -95,7 +95,7 @@ floorl(long double x) INC_MANH(u, 1); } } - if (huge + x > 0.0) /* raise inexact flag */ + if (huge + (double)x > 0.0) /* raise inexact flag */ u.bits.manl &= ~m; } return (u.e); diff --git a/lib/msun/src/s_truncl.c b/lib/msun/src/s_truncl.c index c475b90..cb5e6c9 100644 --- a/lib/msun/src/s_truncl.c +++ b/lib/msun/src/s_truncl.c @@ -36,7 +36,7 @@ static char rcsid[] = "$FreeBSD$"; #define MANH_SIZE LDBL_MANH_SIZE #endif -static const long double huge = 1.0e300; +static const double huge = 1.0e300; long double truncl(long double x) @@ -46,13 +46,13 @@ truncl(long double x) if (e < MANH_SIZE - 1) { if (e < 0) { /* raise inexact if x != 0 */ - if (huge + x > 0.0) + if (huge + (double)x > 0.0) u.e = 0.0; } else { uint64_t m = ((1llu << MANH_SIZE) - 1) >> (e + 1); if (((u.bits.manh & m) | u.bits.manl) == 0) return (x); /* x is integral */ - if (huge + x > 0.0) { /* raise inexact flag */ + if (huge + (double)x > 0.0) { /* raise inexact flag */ u.bits.manh &= ~m; u.bits.manl = 0; } @@ -61,7 +61,7 @@ truncl(long double x) uint64_t m = (uint64_t)-1 >> (64 - LDBL_MANT_DIG + e + 1); if ((u.bits.manl & m) == 0) return (x); /* x is integral */ - if (huge + x > 0.0) /* raise inexact flag */ + if (huge + (double)x > 0.0) /* raise inexact flag */ u.bits.manl &= ~m; } return (u.e); |