From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2910 invoked by alias); 7 Sep 2018 19:01:25 -0000 Mailing-List: contact fortran-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: fortran-owner@gcc.gnu.org Received: (qmail 2879 invoked by uid 89); 7 Sep 2018 19:01:25 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=H*Ad:U*tkoenig, noticing, H*r:209.85.161, r264163 X-HELO: mail-yw1-f65.google.com Received: from mail-yw1-f65.google.com (HELO mail-yw1-f65.google.com) (209.85.161.65) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 07 Sep 2018 19:01:24 +0000 Received: by mail-yw1-f65.google.com with SMTP id l9-v6so5744159ywc.11; Fri, 07 Sep 2018 12:01:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=JCfzpHJuBs48fL2V6t9dqWZLDSvKeCnq2GdjJH7IG2k=; b=iTaTnp/qaUrniNCtq4xaMNwnq3GIhfqpPaPGWU6lwdZMGOV6AQHFf2IPN3o8Rsegt6 OLYX5KhgpOvyjTgbloAHtO00PHdNGfnFzFvXf80wRLorv7hwpJgpgx+zLB6mhH0GI/3/ X25c5aIvQV+bLyahNEUtQLyLkSzN7mazvIVG/u5KolMzfLuLPpfLR7AwxVaF48ph7jv5 1Ba3ZtgE0xqx+UAQ4fN9KLjXKWn0FQrv5kkgXxuIV8yAK5LDXvZzrZ1sFnnP13F+kbZ5 SV+8ZSN0ygX+ZF2OKscY51cAW8bHC2sfcvSEV+lKBlCnODYXk+b+7vTeeZkDALa/MnRd Mq8w== MIME-Version: 1.0 References: <1511208375-18252-1-git-send-email-blomqvist.janne@gmail.com> In-Reply-To: From: Janne Blomqvist Date: Fri, 07 Sep 2018 19:01:00 -0000 Message-ID: Subject: Re: [PATCH] PR 53796 Improve INQUIRE(RECL=...) handling To: Bernhard Reutner-Fischer Cc: Thomas Koenig , Fortran List , GCC Patches Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2018-09/txt/msg00081.txt.bz2 On Fri, Sep 7, 2018 at 4:37 PM Bernhard Reutner-Fischer < rep.dot.nop@gmail.com> wrote: > Janne, > > On Mon, 27 Nov 2017 at 20:57, Thomas Koenig wrote: > > > > Hi Janne, > > > > > PING > > > > Looks good for trunk. Thanks! > > AFAICS this removed the last user of > > static void > init_unsigned_integer > > which manifests itself as > ../../../../../src/gcc-9.0.mine/libgfortran/runtime/environ.c:104:1: > warning: =E2=80=98init_unsigned_integer=E2=80=99 defined but not used > [-Wunused-function] > 104 | init_unsigned_integer (variable * v) > | ^~~~~~~~~~~~~~~~~~~~~ > > and hence should be removed. > > thanks, > Thanks for noticing! Committed r264163 as obvious. Commit msg below: Remove unused init_unsigned_integer function. As pointed out by Bernhard Reutner-Fischer, this function is unused since the fix for PR 53796 in November 2017. 2018-09-07 Janne Blomqvist * runtime/environ.c (init_unsigned_integer): Remove. --=20 Janne Blomqvist