From owner-cvs-src@FreeBSD.ORG Sun Dec 11 17:58:25 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 413C616A41F; Sun, 11 Dec 2005 17:58:25 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71F5043D95; Sun, 11 Dec 2005 17:58:23 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id jBBHwEmh037214; Sun, 11 Dec 2005 17:58:14 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBBHwEIg037213; Sun, 11 Dec 2005 17:58:14 GMT (envelope-from bde) Message-Id: <200512111758.jBBHwEIg037213@repoman.freebsd.org> From: Bruce Evans Date: Sun, 11 Dec 2005 17:58:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/msun/src s_cbrtf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Dec 2005 17:58:25 -0000 bde 2005-12-11 17:58:14 UTC FreeBSD src repository Modified files: lib/msun/src s_cbrtf.c Log: Fixed the unexpectedly large maximum error after the previous commit. It was because I forgot to translate the part of the double precision algorithm that chops t so that t*t is exact. Now the maximum error is the same as for double precision (almost exactly 2.0/3 ulps). Revision Changes Path 1.9 +2 -2 src/lib/msun/src/s_cbrtf.c