From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 52639 invoked by alias); 20 Feb 2019 14:16:31 -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 52607 invoked by uid 89); 20 Feb 2019 14:16:31 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,KAM_SHORT,SPF_PASS autolearn=ham version=3.3.2 spammy=H*f:sk:5E1AB61, H*i:sk:5E1AB61, sk:BUILTIN X-HELO: mx1.suse.de Received: from mx2.suse.de (HELO mx1.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 20 Feb 2019 14:16:29 +0000 Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 58AA9AFA9; Wed, 20 Feb 2019 14:16:27 +0000 (UTC) Subject: Re: [PATCH][RFC] Extend locations where to seach for Fortran pre-include. To: =?UTF-8?Q?Thomas_K=c3=b6nig?= Cc: Bernhard Reutner-Fischer , sgk@troutmask.apl.washington.edu, Thomas Koenig , Steve Ellcey , Matthias Klose , Joseph Myers , Jakub Jelinek , Richard Biener , "fortran@gcc.gnu.org" , Toon Moene , GCC Patches References: <2913f91265696d2b6557037da018e126e63e19fe.camel@caviumnetworks.com> <8f32c16a-53be-4639-e47f-389ec5452a77@netcologne.de> <20190219181821.GA2117@troutmask.apl.washington.edu> <46FDE0D7-CB44-44BB-9072-679FD4842DB8@gmail.com> <8a9b48d7-f903-1dba-7858-e4f270892c67@suse.cz> <5E1AB614-3B9F-4FB6-9B4A-36FFDBF837B5@tkoenig.net> From: =?UTF-8?Q?Martin_Li=c5=a1ka?= Message-ID: <5048f0c3-88ac-c236-b052-9cbcc3ab837e@suse.cz> Date: Wed, 20 Feb 2019 14:17:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.5.0 MIME-Version: 1.0 In-Reply-To: <5E1AB614-3B9F-4FB6-9B4A-36FFDBF837B5@tkoenig.net> Content-Type: multipart/mixed; boundary="------------2C1DBDE7F19910EF234B6A51" X-IsSubscribed: yes X-SW-Source: 2019-02/txt/msg01661.txt.bz2 This is a multi-part message in MIME format. --------------2C1DBDE7F19910EF234B6A51 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Content-length: 511 On 2/20/19 10:36 AM, Thomas König wrote: > Hi Martin, > >> Thank you both useful comments! I installed that as r269035. > > Excellent work, thanks! ;) > > Now a final step: Could you also add a short sentence to gcc-9/changes.html ? In German, we have a saying „Tue Gutes und rede darüber“, do good deeds and talk about it 😉 > > Regards, Thomas > Sure, let's document it with patch attached. Btw. the glibc part patch has been just approved and will be available in glibc release 2.30. Martin --------------2C1DBDE7F19910EF234B6A51 Content-Type: text/x-patch; name="0001-Document-Fortran-BUILTIN-directive.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0001-Document-Fortran-BUILTIN-directive.patch" Content-length: 964 >From 71a1c50d617c88ea9025385e8139d51e77321c81 Mon Sep 17 00:00:00 2001 From: marxin Date: Wed, 20 Feb 2019 15:13:52 +0100 Subject: [PATCH] Document Fortran BUILTIN directive. --- htdocs/gcc-9/changes.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/htdocs/gcc-9/changes.html b/htdocs/gcc-9/changes.html index 4d9f549..ee7aac1 100644 --- a/htdocs/gcc-9/changes.html +++ b/htdocs/gcc-9/changes.html @@ -243,6 +243,11 @@ foo (int how) which allows the directive to be written on multiple source lines with line continuations. +
  • + A new BUILTIN directive, has been added. + The purpose of the directive is to provide an API among the GCC compiler and + the GNU C Library which would define vector implementations of math routines. +
  • -- 2.20.1 --------------2C1DBDE7F19910EF234B6A51--