From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from hamza.pair.com (hamza.pair.com [209.68.5.143]) by sourceware.org (Postfix) with ESMTPS id 545023858C5F for ; Wed, 7 Feb 2024 21:23:20 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 545023858C5F Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=pfeifer.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=pfeifer.com ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 545023858C5F Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=209.68.5.143 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1707341003; cv=none; b=k4jEjBMiv2ECZy5kRiTYTyf3Asbz+NdP7J8iTUgbhB0da6ZXJxX6Dn1/F451dOD/2AuHB9eb2D5eLRbgYvBgFcGj16jnHPOl2wev/zGSciNkP5+mpHoRDmt+DMdrPWlvE9wEti582Sg0nlhfgsFnnfJHjOJSqiVvBpng+aNlkVY= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1707341003; c=relaxed/simple; bh=tuNRisS1DVnkgYxv1pEPS7faeT9slYHJuX8iEoBXSVU=; h=Date:From:To:Subject:Message-ID:MIME-Version; b=ImZ2AIONad9vOp/bgwfDqr1J3iZLi7MyPbZpEtV8jnXHVa9HwRn6vusgDknIVyCnGixuxrtGLW/xzgC/FG6eg4yng+Izj+5xhRRX+y7e2T6tmEVDAatnqIYfkaEP/F2WfFOxYEkkqDPBhE5WPg0YbaacY+W+x6av6v4+4gN+rkQ= ARC-Authentication-Results: i=1; server2.sourceware.org Received: from hamza.pair.com (localhost [127.0.0.1]) by hamza.pair.com (Postfix) with ESMTP id DC79F33ED1; Wed, 7 Feb 2024 16:23:19 -0500 (EST) Received: from [10.10.153.60] (unknown [185.218.35.128]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by hamza.pair.com (Postfix) with ESMTPSA id 5E9E833EDC; Wed, 7 Feb 2024 16:23:19 -0500 (EST) Date: Wed, 7 Feb 2024 22:23:13 +0100 (CET) From: Gerald Pfeifer To: Jeff Law cc: gcc-patches@gcc.gnu.org Subject: Re: [committed][gcc-wwwdocs] Add blurb about bitfield signedness on mcore In-Reply-To: <4f228ab7-cc8f-4ca7-b32c-58e530771796@gmail.com> Message-ID: References: <4f228ab7-cc8f-4ca7-b32c-58e530771796@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Scanned-By: mailmunge 3.11 on 209.68.5.143 X-Spam-Status: No, score=-11.3 required=5.0 tests=BAYES_00,GIT_PATCH_0,KAM_DMARC_STATUS,SPF_HELO_NONE,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On Tue, 19 Dec 2023, Jeff Law wrote: > Pushed to the trunk. Is this minor follow-up okay, adding a full stop and shortening a bit? Gerald diff --git a/htdocs/gcc-14/changes.html b/htdocs/gcc-14/changes.html index 6d917535..dbc77493 100644 --- a/htdocs/gcc-14/changes.html +++ b/htdocs/gcc-14/changes.html @@ -504,7 +504,7 @@ a work-in-progress.

  • Bitfields are now signed by default per GCC policy. If you need bitfields - to be unsigned, then use -funsigned-bitfields + to be unsigned, use -funsigned-bitfields.