From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 125625 invoked by alias); 4 Dec 2015 09:45:45 -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 125614 invoked by uid 89); 4 Dec 2015 09:45:45 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mx2.suse.de Received: from mx2.suse.de (HELO mx2.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (CAMELLIA256-SHA encrypted) ESMTPS; Fri, 04 Dec 2015 09:45:44 +0000 Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id B0DDEAD77; Fri, 4 Dec 2015 09:45:40 +0000 (UTC) To: GCC Patches Cc: joseph@codesourcery.com From: =?UTF-8?Q?Martin_Li=c5=a1ka?= Subject: [DOC,PATCH] Mention clog10, clog10f an clog10l in Builtins section. Message-ID: <566160C3.9020503@suse.cz> Date: Fri, 04 Dec 2015 09:45:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------080705000204050401040600" X-IsSubscribed: yes X-SW-Source: 2015-12/txt/msg00531.txt.bz2 This is a multi-part message in MIME format. --------------080705000204050401040600 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Content-length: 206 Hello. I noticed that Builtins section of documentation does not mention clog10{,f,l} functions. I've tried to write a patch, however I'm not sure how should be these functions described. Thanks, Martin --------------080705000204050401040600 Content-Type: text/x-patch; name="0001-Mention-clog10-f-l-in-documentation-Builtins-section.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename*0="0001-Mention-clog10-f-l-in-documentation-Builtins-section.pa"; filename*1="tch" Content-length: 1162 >From 2cb8dfd30ac14e1de00f3788a0b6e55c6a7fa8b9 Mon Sep 17 00:00:00 2001 From: marxin Date: Fri, 4 Dec 2015 10:35:52 +0100 Subject: [PATCH] Mention clog10{,f,l} in documentation (Builtins section) gcc/ChangeLog: 2015-12-04 Martin Liska * doc/extend.texi: Mention clog10, clog10f an clog10l in Builtins section. --- gcc/doc/extend.texi | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index 63fce0f..e9d08f5 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -10505,6 +10505,10 @@ that are recognized in any mode since ISO C90 reserves these names for the purpose to which ISO C99 puts them. All these functions have corresponding versions prefixed with @code{__builtin_}. +There are also GNU extension functions @code{clog10}, @code{clog10f} and +@code{clog10l} which names are reserved by ISO C99 for future use. +All these functions have versions prefixed with @code{__builtin_}. + The ISO C94 functions @code{iswalnum}, @code{iswalpha}, @code{iswcntrl}, @code{iswdigit}, @code{iswgraph}, @code{iswlower}, @code{iswprint}, @code{iswpunct}, -- 2.6.3 --------------080705000204050401040600--