From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15997 invoked by alias); 24 Jan 2011 20:10:10 -0000 Received: (qmail 15939 invoked by uid 22791); 24 Jan 2011 20:10:07 -0000 X-SWARE-Spam-Status: No, hits=-2.3 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from mail-vw0-f47.google.com (HELO mail-vw0-f47.google.com) (209.85.212.47) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 24 Jan 2011 20:10:02 +0000 Received: by vws6 with SMTP id 6so1968287vws.20 for ; Mon, 24 Jan 2011 12:10:00 -0800 (PST) Received: by 10.220.188.140 with SMTP id da12mr1273041vcb.151.1295899800419; Mon, 24 Jan 2011 12:10:00 -0800 (PST) Received: from moria.site (pool-98-116-111-216.nycmny.fios.verizon.net [98.116.111.216]) by mx.google.com with ESMTPS id fl9sm8048474vbb.10.2011.01.24.12.09.58 (version=SSLv3 cipher=RC4-MD5); Mon, 24 Jan 2011 12:09:59 -0800 (PST) Message-ID: <4D3DDC95.7040700@naturalbridge.com> Date: Mon, 24 Jan 2011 21:09:00 -0000 From: Kenneth Zadeck User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101209 Fedora/3.1.7-0.35.b3pre.fc14 Thunderbird/3.1.7 MIME-Version: 1.0 To: Richard Guenther CC: gcc-patches Subject: Re: comment fix to machmode.def References: <4D3D971E.6000806@naturalbridge.com> In-Reply-To: Content-Type: multipart/mixed; boundary="------------080208020804040201020200" Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2011-01/txt/msg01684.txt.bz2 This is a multi-part message in MIME format. --------------080208020804040201020200 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 215 committed as revision 169179. On 01/24/2011 11:07 AM, Richard Guenther wrote: > On Mon, 24 Jan 2011, Kenneth Zadeck wrote: > >> fix comment rot - no code change. ok to commit at this late stage? > Ok. > > Richard. --------------080208020804040201020200 Content-Type: text/plain; name="xx.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="xx.diff" Content-length: 1621 Index: machmode.def =================================================================== --- machmode.def (revision 169162) +++ machmode.def (working copy) @@ -86,15 +86,19 @@ along with GCC; see the file COPYING3. using floating point format FORMAT. All of the bits of its representation are significant. - DECIMAL FLOAT_MODE (MODE, BYTESIZE); - declares MODE to be of class DECIMAL_FLOAT and BYTESIZE bytes - wide. All of the bits of its representation are significant. - FRACTIONAL_FLOAT_MODE (MODE, PRECISION, BYTESIZE, FORMAT); declares MODE to be of class FLOAT, BYTESIZE bytes wide in storage, but with only PRECISION significant bits, using floating point format FORMAT. + DECIMAL_FLOAT_MODE (MODE, BYTESIZE, FORMAT); + declares MODE to be of class DECIMAL_FLOAT and BYTESIZE bytes + wide. All of the bits of its representation are significant. + + FRACTIONAL_DECIMAL_FLOAT_MODE (MODE, BYTESIZE, FORMAT); + declares MODE to be of class DECIMAL_FLOAT and BYTESIZE bytes + wide. All of the bits of its representation are significant. + FRACT_MODE (MODE, BYTESIZE, FBIT); declares MODE to be of class FRACT and BYTESIZE bytes wide with FBIT fractional bits. There may be padding bits. @@ -108,7 +112,7 @@ along with GCC; see the file COPYING3. with IBIT integral bits and FBIT fractional bits. There may be padding bits. - UACCUM_MODE (MODE, BYTESIZE, FBIT); + UACCUM_MODE (MODE, BYTESIZE, IBIT, FBIT); declares MODE to be of class UACCUM and BYTESIZE bytes wide with IBIT integral bits and FBIT fractional bits. There may be padding bits. --------------080208020804040201020200--