From owner-cvs-src@FreeBSD.ORG Sat Jul 10 17:44:27 2004 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 5307716A4CE; Sat, 10 Jul 2004 17:44:27 +0000 (GMT) Received: from VARK.homeunix.com (adsl-69-107-108-110.dsl.pltn13.pacbell.net [69.107.108.110]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1918943D2D; Sat, 10 Jul 2004 17:44:27 +0000 (GMT) (envelope-from das@FreeBSD.ORG) Received: from VARK.homeunix.com (localhost [127.0.0.1]) by VARK.homeunix.com (8.12.11/8.12.10) with ESMTP id i6AHiFoV036052; Sat, 10 Jul 2004 10:44:15 -0700 (PDT) (envelope-from das@FreeBSD.ORG) Received: (from das@localhost) by VARK.homeunix.com (8.12.11/8.12.10/Submit) id i6AHiFvD036051; Sat, 10 Jul 2004 10:44:15 -0700 (PDT) (envelope-from das@FreeBSD.ORG) Date: Sat, 10 Jul 2004 10:44:15 -0700 From: David Schultz To: Marcel Moolenaar Message-ID: <20040710174415.GA35996@VARK.homeunix.com> Mail-Followup-To: Marcel Moolenaar , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200407101552.i6AFqQB7030330@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407101552.i6AFqQB7030330@repoman.freebsd.org> cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libc/gen isinf.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, 10 Jul 2004 17:44:27 -0000 On Sat, Jul 10, 2004, Marcel Moolenaar wrote: > marcel 2004-07-10 15:52:26 UTC > > FreeBSD src repository > > Modified files: > lib/libc/gen isinf.c > Log: > Unbreak alpha: On alpha a long double is the same as a double and > consequently the exponent is only 11 bits. Testing whether the > exponent equals 32767 in that case only effects to compiler warnings > and thus build breakage. Thanks. Even though the exponent range is the same for both the IEEE extended and quad ``long double'' formats and is probably never going to change, I should probably add some macros for these constants. Perhaps after including , it would simply be #define LDBL_MAXEXP (LDBM_MAX * 2 - 1).