From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 126564 invoked by alias); 1 Oct 2015 18:40:11 -0000 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 Received: (qmail 126545 invoked by uid 89); 1 Oct 2015 18:40:10 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Thu, 01 Oct 2015 18:40:09 +0000 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (Postfix) with ESMTPS id BF8BC91597; Thu, 1 Oct 2015 18:40:08 +0000 (UTC) Received: from localhost (ovpn-116-138.ams2.redhat.com [10.36.116.138]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t91Ie7Pt025511; Thu, 1 Oct 2015 14:40:08 -0400 Date: Thu, 01 Oct 2015 18:40:00 -0000 From: Jonathan Wakely To: Sandra Loosemore Cc: Andrew Haley , gcc-patches@gcc.gnu.org Subject: Re: [PATCH] Clarify __atomic_compare_exchange_n docs Message-ID: <20151001184007.GN12094@redhat.com> References: <20150929120038.GW12094@redhat.com> <560AAC7B.4030904@codesourcery.com> <560D18EB.5090900@redhat.com> <560D73F5.9090908@codesourcery.com> <20151001183518.GL12094@redhat.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="7VkxxUl3xUvPtoxk" Content-Disposition: inline In-Reply-To: <20151001183518.GL12094@redhat.com> X-Clacks-Overhead: GNU Terry Pratchett User-Agent: Mutt/1.5.23 (2014-03-12) X-SW-Source: 2015-10/txt/msg00118.txt.bz2 --7VkxxUl3xUvPtoxk Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline Content-length: 35 There's a typo in an example too. --7VkxxUl3xUvPtoxk Content-Type: text/x-patch; charset=us-ascii Content-Disposition: attachment; filename="patch.txt" Content-length: 440 diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index ce1b4ae..599ad87 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -9471,7 +9471,7 @@ alignment. A value of 0 indicates typical alignment should be used. The compiler may also ignore this parameter. @smallexample -if (_atomic_always_lock_free (sizeof (long long), 0)) +if (__atomic_always_lock_free (sizeof (long long), 0)) @end smallexample @end deftypefn --7VkxxUl3xUvPtoxk--