From owner-cvs-src@FreeBSD.ORG Sat Oct 25 02:32:20 2003 Return-Path: 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 F27C716A4B3; Sat, 25 Oct 2003 02:32:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16C9E43F93; Sat, 25 Oct 2003 02:32:19 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9P9WIXJ081527; Sat, 25 Oct 2003 02:32:18 -0700 (PDT) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9P9WIHx081526; Sat, 25 Oct 2003 02:32:18 -0700 (PDT) (envelope-from des) Message-Id: <200310250932.h9P9WIHx081526@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 25 Oct 2003 02:32:18 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/msun Makefile src/lib/msun/src fabsl.c s_fabsl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 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: Sat, 25 Oct 2003 09:32:20 -0000 des 2003/10/25 02:32:18 PDT FreeBSD src repository Modified files: lib/msun Makefile Added files: lib/msun/src s_fabsl.c Removed files: lib/msun/src fabsl.c Log: - fabsl.c should be named s_fabsl.c for consistency with libmsun's documented naming scheme (unfortunately the documentation isn't in the tree as far as I can tell); no repocopy is required as there is no history to preserve. - replace simple and almost-correct implementation with slightly hackish but definitely correct implementation (tested on i386, alpha, sparc64) which requires pulling in fpmath.h and the MD _fpmath.h from libc. - try not to make a mess of the Makefile in the process. - enterprising minds are encouraged to implement more C99 long double functions. Revision Changes Path 1.37 +7 -2 src/lib/msun/Makefile 1.2 +0 -37 src/lib/msun/src/fabsl.c (dead) 1.1 +40 -0 src/lib/msun/src/s_fabsl.c (new)