Fix whitespace issue.

Approved by:	das (mentor, implicit)
This commit is contained in:
Steve Kargl 2012-09-23 18:13:46 +00:00
parent 8f647ffd7f
commit 724c1ee29f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=240865

View File

@ -251,7 +251,7 @@ expl(long double x)
return (tiny * tiny);
} else if (ix <= BIAS - 34) { /* |x| < 0x1p-33 */
/* includes pseudo-denormals */
if (huge + x > 1.0L) /* trigger inexact iff x != 0 */
if (huge + x > 1.0L) /* trigger inexact iff x != 0 */
return (1.0L + x);
}