From owner-cvs-src@FreeBSD.ORG Thu Nov 17 03:53:23 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 7BD4C16A41F; Thu, 17 Nov 2005 03:53:23 +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 5213443D45; Thu, 17 Nov 2005 03:53: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 jAH3rNHI042072; Thu, 17 Nov 2005 03:53:23 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jAH3rNKm042071; Thu, 17 Nov 2005 03:53:23 GMT (envelope-from bde) Message-Id: <200511170353.jAH3rNKm042071@repoman.freebsd.org> From: Bruce Evans Date: Thu, 17 Nov 2005 03:53:22 +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_cosf.c s_sinf.c s_tanf.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: Thu, 17 Nov 2005 03:53:23 -0000 bde 2005-11-17 03:53:22 UTC FreeBSD src repository Modified files: lib/msun/src s_cosf.c s_sinf.c s_tanf.c Log: Minor cleanups: s_cosf.c and s_sinf.c: Use a non-bogus magic constant for the threshold of pi/4. It was 2 ulps smaller than pi/4 rounded down, but its value is not critical so it should be the result of natural rounding. s_cosf.c and s_tanf.c: Use a literal 0.0 instead of an unnecessary variable initialized to [(float)]0.0. Let the function prototype convert to 0.0F. Improved wording in some comments. Attempted to improve indentation of comments. Revision Changes Path 1.9 +6 -7 src/lib/msun/src/s_cosf.c 1.9 +6 -7 src/lib/msun/src/s_sinf.c 1.9 +9 -10 src/lib/msun/src/s_tanf.c