From owner-svn-src-head@FreeBSD.ORG Sat Sep 22 21:26:35 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 33CAE106564A; Sat, 22 Sep 2012 21:26:35 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from mail03.syd.optusnet.com.au (mail03.syd.optusnet.com.au [211.29.132.184]) by mx1.freebsd.org (Postfix) with ESMTP id A74848FC08; Sat, 22 Sep 2012 21:26:34 +0000 (UTC) Received: from c122-106-157-84.carlnfd1.nsw.optusnet.com.au (c122-106-157-84.carlnfd1.nsw.optusnet.com.au [122.106.157.84]) by mail03.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id q8MLQQl0022051 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 23 Sep 2012 07:26:26 +1000 Date: Sun, 23 Sep 2012 07:26:26 +1000 (EST) From: Bruce Evans X-X-Sender: bde@besplex.bde.org To: Steve Kargl In-Reply-To: <201209221519.q8MFJBNu089692@svn.freebsd.org> Message-ID: <20120923072608.J1963@besplex.bde.org> References: <201209221519.q8MFJBNu089692@svn.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r240827 - head/lib/msun/src X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Sep 2012 21:26:35 -0000 On Sat, 22 Sep 2012, Steve Kargl wrote: > Log: > * Make STRICT_ALIGN() work for doubles as well as for floats. This > only affects i386. The double case was intentionally left broken > as an optimization, but we are getting closer to supporting > applications and/or kernels that change the (FreeBSD i386) default > rounding precision from FP_PD to FP_PE and never change it back, > and this requires the STRICT_ALIGN()s that were added to support > FP_PE to actually work in all precisions. > > * Remove an extraneous semicolon at the end of a macro that was > supposed to be function-like. > > Submitted by: bde > Approved by: das (mentor) Thanks. Bruce