From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/2275 Path: news.gmane.org!not-for-mail From: Szabolcs Nagy Newsgroups: gmane.linux.lib.musl.general Subject: Re: Remaining agenda for 0.9.8 Date: Thu, 15 Nov 2012 09:35:47 +0100 Message-ID: <20121115083547.GG12537@port70.net> References: <20121115015500.GA2878@brightrain.aerifal.cx> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1352968562 17529 80.91.229.3 (15 Nov 2012 08:36:02 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 15 Nov 2012 08:36:02 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-2276-gllmg-musl=m.gmane.org@lists.openwall.com Thu Nov 15 09:36:13 2012 Return-path: Envelope-to: gllmg-musl@plane.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1TYuvl-0005lp-GF for gllmg-musl@plane.gmane.org; Thu, 15 Nov 2012 09:36:13 +0100 Original-Received: (qmail 10208 invoked by uid 550); 15 Nov 2012 08:36:01 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 10191 invoked from network); 15 Nov 2012 08:35:59 -0000 Content-Disposition: inline In-Reply-To: <20121115015500.GA2878@brightrain.aerifal.cx> User-Agent: Mutt/1.5.21 (2010-09-15) Xref: news.gmane.org gmane.linux.lib.musl.general:2275 Archived-At: * Rich Felker [2012-11-14 20:55:00 -0500]: > Anything I missed, or additional requests? I'm hoping to get a release > out pretty quickly since the last release cycle was rather long, and i fixed a couple of math bugs eg. exp10l had constants trucated to double there were several functions (scalbn, modf, nextafter) which should be correctly rounded but the return value was not stored, so they returned a value with excess precision (this can cause bad breakage unless the caller saves the result) some __invtrig globals are removed these should be fixed there are various other improvements a major change is that i changed STRICT_ASSIGN to no longer do the volatile thing (it's not needed on gcc if either -ffloat-store or c99 standard excess precision handling is present, hopefully other compilers are not as broken as gcc) and i added the c11 CMPLX into complex.h (ifdefed for c11)