From owner-svn-src-head@FreeBSD.ORG Mon Jun 3 17:40:53 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 6A3BEFA5; Mon, 3 Jun 2013 17:40:53 +0000 (UTC) (envelope-from kargl@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 5B8D31C91; Mon, 3 Jun 2013 17:40:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r53Hervt095936; Mon, 3 Jun 2013 17:40:53 GMT (envelope-from kargl@svn.freebsd.org) Received: (from kargl@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r53Her8b095934; Mon, 3 Jun 2013 17:40:53 GMT (envelope-from kargl@svn.freebsd.org) Message-Id: <201306031740.r53Her8b095934@svn.freebsd.org> From: Steve Kargl Date: Mon, 3 Jun 2013 17:40:53 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r251325 - in head/lib/msun: ld128 ld80 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Jun 2013 17:40:53 -0000 Author: kargl Date: Mon Jun 3 17:40:52 2013 New Revision: 251325 URL: http://svnweb.freebsd.org/changeset/base/251325 Log: Whitespace. Modified: head/lib/msun/ld128/s_expl.c head/lib/msun/ld80/s_expl.c Modified: head/lib/msun/ld128/s_expl.c ============================================================================== --- head/lib/msun/ld128/s_expl.c Mon Jun 3 17:40:05 2013 (r251324) +++ head/lib/msun/ld128/s_expl.c Mon Jun 3 17:40:52 2013 (r251325) @@ -227,7 +227,7 @@ expl(long double x) /* Reduce x to (k*ln2 + midpoint[n2] + r1 + r2). */ fn = x * INV_L + 0x1.8p112 - 0x1.8p112; - n = (int)fn; + n = (int)fn; n2 = (unsigned)n % INTERVALS; k = (n - n2) / INTERVALS; r1 = x - fn * L1; Modified: head/lib/msun/ld80/s_expl.c ============================================================================== --- head/lib/msun/ld80/s_expl.c Mon Jun 3 17:40:05 2013 (r251324) +++ head/lib/msun/ld80/s_expl.c Mon Jun 3 17:40:52 2013 (r251325) @@ -262,11 +262,11 @@ expl(long double x) fn = x * INV_L + 0x1.8p63 - 0x1.8p63; r = x - fn * L1 - fn * L2; /* r = r1 + r2 done independently. */ #if defined(HAVE_EFFICIENT_IRINTL) - n = irintl(fn); + n = irintl(fn); #elif defined(HAVE_EFFICIENT_IRINT) - n = irint(fn); + n = irint(fn); #else - n = (int)fn; + n = (int)fn; #endif n2 = (unsigned)n % INTERVALS; k = (n - n2) / INTERVALS;