From owner-cvs-all@FreeBSD.ORG Mon Mar 7 04:55:22 2005 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D1F3416A4CE; Mon, 7 Mar 2005 04:55:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1CE543D39; Mon, 7 Mar 2005 04:55:22 +0000 (GMT) (envelope-from das@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 j274tM7g053143; Mon, 7 Mar 2005 04:55:22 GMT (envelope-from das@repoman.freebsd.org) Received: (from das@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j274tMq0053142; Mon, 7 Mar 2005 04:55:22 GMT (envelope-from das) Message-Id: <200503070455.j274tMq0053142@repoman.freebsd.org> From: David Schultz Date: Mon, 7 Mar 2005 04:55:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/alpha _fpmath.h src/lib/libc/amd64 _fpmath.h src/lib/libc/arm _fpmath.h src/lib/libc/i386 _fpmath.h src/lib/libc/powerpc _fpmath.h src/lib/libc/sparc64 _fpmath.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Mar 2005 04:55:23 -0000 das 2005-03-07 04:55:22 UTC FreeBSD src repository Modified files: lib/libc/alpha _fpmath.h lib/libc/amd64 _fpmath.h lib/libc/arm _fpmath.h lib/libc/i386 _fpmath.h lib/libc/powerpc _fpmath.h lib/libc/sparc64 _fpmath.h Log: Define LDBL_NBIT to be a mask indicating the position of the integer bit in a long double. For architectures that don't have such a bit, LDBL_NBIT is 0. This makes it possible to say `mantissa & ~LDBL_NBIT' in places that previously used an #ifdef to select the right expression. The optimizer should dispense with the extra arithmetic when LDBL_NBIT is 0. Revision Changes Path 1.6 +1 -0 src/lib/libc/alpha/_fpmath.h 1.6 +2 -1 src/lib/libc/amd64/_fpmath.h 1.3 +2 -1 src/lib/libc/arm/_fpmath.h 1.5 +2 -1 src/lib/libc/i386/_fpmath.h 1.7 +1 -0 src/lib/libc/powerpc/_fpmath.h 1.5 +1 -0 src/lib/libc/sparc64/_fpmath.h