From owner-svn-src-all@FreeBSD.ORG Thu Feb 10 07:37:29 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 92116106566C; Thu, 10 Feb 2011 07:37:29 +0000 (UTC) (envelope-from das@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 812DD8FC13; Thu, 10 Feb 2011 07:37:29 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id p1A7bT3R013582; Thu, 10 Feb 2011 07:37:29 GMT (envelope-from das@svn.freebsd.org) Received: (from das@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id p1A7bTvV013580; Thu, 10 Feb 2011 07:37:29 GMT (envelope-from das@svn.freebsd.org) Message-Id: <201102100737.p1A7bTvV013580@svn.freebsd.org> From: David Schultz Date: Thu, 10 Feb 2011 07:37:29 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r218508 - head/lib/msun/src X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Feb 2011 07:37:29 -0000 Author: das Date: Thu Feb 10 07:37:29 2011 New Revision: 218508 URL: http://svn.freebsd.org/changeset/base/218508 Log: Fix a bogus threshold that was copied from the double precision version. This commit should have no effect on correctness; it merely changes the threshold at which a simpler approximation can be used. Reviewed by: bde Modified: head/lib/msun/src/e_expf.c Modified: head/lib/msun/src/e_expf.c ============================================================================== --- head/lib/msun/src/e_expf.c Thu Feb 10 05:33:40 2011 (r218507) +++ head/lib/msun/src/e_expf.c Thu Feb 10 07:37:29 2011 (r218508) @@ -72,7 +72,7 @@ __ieee754_expf(float x) /* default IEEE } x = hi - lo; } - else if(hx < 0x31800000) { /* when |x|<2**-28 */ + else if(hx < 0x39000000) { /* when |x|<2**-14 */ if(huge+x>one) return one+x;/* trigger inexact */ } else k = 0;