summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkargl <kargl@FreeBSD.org>2012-07-30 21:55:49 +0000
committerkargl <kargl@FreeBSD.org>2012-07-30 21:55:49 +0000
commit0aadb27b4102ebb037ecde41aaddbd8e1db8e2dd (patch)
tree0001007060b05d59c44ab928ad199dd1af27c658
parent94d6c8b29dc8d168943867ef19ee656bc6b78c67 (diff)
downloadFreeBSD-src-0aadb27b4102ebb037ecde41aaddbd8e1db8e2dd.zip
FreeBSD-src-0aadb27b4102ebb037ecde41aaddbd8e1db8e2dd.tar.gz
Whitespace.
Submitted by: bde Approved by: das (pre-approved)
-rw-r--r--lib/msun/ld128/s_expl.c4
-rw-r--r--lib/msun/ld80/s_expl.c2
-rw-r--r--lib/msun/src/s_cbrtl.c1
3 files changed, 3 insertions, 4 deletions
diff --git a/lib/msun/ld128/s_expl.c b/lib/msun/ld128/s_expl.c
index c03368e..7594486 100644
--- a/lib/msun/ld128/s_expl.c
+++ b/lib/msun/ld128/s_expl.c
@@ -58,7 +58,7 @@ P9 = 2.75573192240103867817876199544468806e-6L,
P10 = 2.75573236172670046201884000197885520e-7L,
P11 = 2.50517544183909126492878226167697856e-8L;
-#define INTERVALS 128
+#define INTERVALS 128
static const struct {
long double hi;
@@ -205,7 +205,7 @@ expl(long double x)
/* Filter out exceptional cases. */
u.e = x;
hx = u.xbits.expsign;
- ix = hx & 0x7fff;
+ ix = hx & 0x7fff;
if (ix >= BIAS + 13) { /* |x| >= 8192 or x is NaN */
if (ix == BIAS + LDBL_MAX_EXP) {
if (u.xbits.manh != 0
diff --git a/lib/msun/ld80/s_expl.c b/lib/msun/ld80/s_expl.c
index 7fb0d99..8b26d5b 100644
--- a/lib/msun/ld80/s_expl.c
+++ b/lib/msun/ld80/s_expl.c
@@ -88,7 +88,7 @@ P6 = 1.3888891738560272e-3; /* 0x16c16c651633ae.0p-62 */
* the first 47 (?!) bits of the significand is stored in hi and the next 53
* bits are in lo.
*/
-#define INTERVALS 128
+#define INTERVALS 128
static const struct {
double hi;
diff --git a/lib/msun/src/s_cbrtl.c b/lib/msun/src/s_cbrtl.c
index 95ab956..3203d96 100644
--- a/lib/msun/src/s_cbrtl.c
+++ b/lib/msun/src/s_cbrtl.c
@@ -52,7 +52,6 @@ cbrtl(long double x)
return (x + x);
ENTERI();
-
if (k == 0) {
/* If x = +-0, then cbrt(x) = +-0. */
if ((u.bits.manh | u.bits.manl) == 0)
OpenPOWER on IntegriCloud