From patchwork Tue Aug 20 12:16:31 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nick Clifton X-Patchwork-Id: 268505 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "localhost", Issuer "www.qmailtoaster.com" (not verified)) by ozlabs.org (Postfix) with ESMTPS id 43BCA2C017E for ; Tue, 20 Aug 2013 22:16:47 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:cc:subject:references :in-reply-to:content-type:content-transfer-encoding; q=dns; s= default; b=U/YyUwSIT6VxUcCG7GbkJQNp2ifm6hg0nnG9vLr2muzxnKKoYWW6n w7qkZ1zKZO7QtN1/fh2WODKBq1FBoToUqCdapfIObZmiPxVPfPYUafIk7n7iq2NR 32cB8yp0vjgtVhOBPBOgrD6Y9i8s2ifIelJrMGEokuaCMcvBlEXVFk= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:cc:subject:references :in-reply-to:content-type:content-transfer-encoding; s=default; bh=dE2Q/MnbuuWCuUPSK2pugcKDyco=; b=sLruomBCoXOWo11lW/ttDTWoLs4O ywjxo83fUSYEqr937qG59Gg1GI7R4GwsD23SoX3gVisKISSsP8FDOPvQifJfbSce XyNBUJfhaMRG5SpS5gjiqYCipKXaeWQHDLWUg1Ibx6hWnwp5qh1G7948dqtO52x8 ff2xfj5rjhSpvpw= Received: (qmail 30302 invoked by alias); 20 Aug 2013 12:16:39 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 30292 invoked by uid 89); 20 Aug 2013 12:16:39 -0000 X-Spam-SWARE-Status: No, score=-8.3 required=5.0 tests=AWL, BAYES_00, KHOP_THREADED, RCVD_IN_HOSTKARMA_W, RCVD_IN_HOSTKARMA_WL, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Tue, 20 Aug 2013 12:16:38 +0000 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r7KCGaQ2026445 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 20 Aug 2013 08:16:36 -0400 Received: from [10.36.7.239] (vpn1-7-239.ams2.redhat.com [10.36.7.239]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id r7KCGX6G003781 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 20 Aug 2013 08:16:35 -0400 Message-ID: <52135E1F.6080209@redhat.com> Date: Tue, 20 Aug 2013 13:16:31 +0100 From: nick clifton User-Agent: Mozilla/5.0 (X11; Linux i686; rv:23.0) Gecko/20100101 Firefox/23.0 SeaMonkey/2.20 MIME-Version: 1.0 To: Gerald Pfeifer CC: "Joseph S. Myers" , gcc-patches@gcc.gnu.org Subject: Re: RFA: Fix declaration of default value of TARGET_NARROW_VOLATILE_BITFIELD References: <87ip3cchut.fsf@redhat.com> In-Reply-To: Hi Gerald, > it looks this patch did not get applied. Is this because you > failed to get approval? Yes. :-( > With a patch Joseph did recently, this would now be in gcc/target.def, > and from what I can see both parts of the patch are fine. > > Unless anyone objects, can you please ago ahead and commit an > update patch? Thanks. I have gone ahead and checked in this patch: Cheers Nick gcc/ChangeLog 2013-08-20 Nick Clifton * target.def (narrow_volatile_bitfield): Note that the default value is false, not !TARGET_STRICT_ALIGN. * doc/tm.texi: Regenerate. Index: target.def =================================================================== --- target.def (revision 201870) +++ target.def (working copy) @@ -1967,7 +1967,7 @@ should use the narrowest mode possible. It should return @code{false} if\n\ these accesses should use the bitfield container type.\n\ \n\ -The default is @code{!TARGET_STRICT_ALIGN}.", +The default is @code{false}.", bool, (void), hook_bool_void_false)