Whitespace.

Submitted by:	bde
Approved by:	das (pre-approved)
This commit is contained in:
Steve Kargl 2012-07-30 21:55:49 +00:00
parent 336a1fd275
commit ca50c4b871
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=238923
3 changed files with 3 additions and 4 deletions

View File

@ -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

View File

@ -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;

View File

@ -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)