Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 30 Jul 2012 21:55:50 +0000 (UTC)
From:      Steve Kargl <kargl@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r238923 - in head/lib/msun: ld128 ld80 src
Message-ID:  <201207302155.q6ULtoaN048378@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kargl
Date: Mon Jul 30 21:55:49 2012
New Revision: 238923
URL: http://svn.freebsd.org/changeset/base/238923

Log:
  Whitespace.
  
  Submitted by:	bde
  Approved by:	das (pre-approved)

Modified:
  head/lib/msun/ld128/s_expl.c
  head/lib/msun/ld80/s_expl.c
  head/lib/msun/src/s_cbrtl.c

Modified: head/lib/msun/ld128/s_expl.c
==============================================================================
--- head/lib/msun/ld128/s_expl.c	Mon Jul 30 21:30:43 2012	(r238922)
+++ head/lib/msun/ld128/s_expl.c	Mon Jul 30 21:55:49 2012	(r238923)
@@ -58,7 +58,7 @@ P9 = 2.755731922401038678178761995444688
 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

Modified: head/lib/msun/ld80/s_expl.c
==============================================================================
--- head/lib/msun/ld80/s_expl.c	Mon Jul 30 21:30:43 2012	(r238922)
+++ head/lib/msun/ld80/s_expl.c	Mon Jul 30 21:55:49 2012	(r238923)
@@ -88,7 +88,7 @@ P6 =  1.3888891738560272e-3;		/*  0x16c1
  * 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;

Modified: head/lib/msun/src/s_cbrtl.c
==============================================================================
--- head/lib/msun/src/s_cbrtl.c	Mon Jul 30 21:30:43 2012	(r238922)
+++ head/lib/msun/src/s_cbrtl.c	Mon Jul 30 21:55:49 2012	(r238923)
@@ -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)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201207302155.q6ULtoaN048378>