From patchwork Thu Oct 1 18:40:07 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Wakely X-Patchwork-Id: 525267 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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3D26C140D78 for ; Fri, 2 Oct 2015 04:40:18 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=jv5pK90Y; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:cc:subject:message-id:references:mime-version :content-type:in-reply-to; q=dns; s=default; b=nAW+84Sz4ryfSuACY toTJ2F1nqZzBzbmAb0xgvvAO3DLUck/s6VznxaCy3SOrM+xSToO6N2OF68rk2sq3 Q4FfKAl47t13ZQmwnANNpOUSWyRfsnaYb1/ptaAVuwqe2aqf0C/cFxfduKaAIczr 7RKOUFYJI8pmI4rIO0uegOBrwA= 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:date :from:to:cc:subject:message-id:references:mime-version :content-type:in-reply-to; s=default; bh=G283evJhu/xUI46Q9Nmgb/k J89c=; b=jv5pK90YOV1+Dbweu5KpPvdzc4OYufzxyLfkh4aGcApdLDRjOxILIBM LCwV0Sg56XXx6u34OrD34RyCWTin3Fxwj889TQ/ENbs+KZueMyqgBZDlGFfSKgtd ybnI5xCrZdq7GfSMKA5Vh6UPXPxKtEHx46fIFTsSpOvXAvw8GT3M= 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-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 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, 1 Oct 2015 19:40:07 +0100 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-Disposition: inline In-Reply-To: <20151001183518.GL12094@redhat.com> X-Clacks-Overhead: GNU Terry Pratchett User-Agent: Mutt/1.5.23 (2014-03-12) There's a typo in an example too. 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