From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 82387 invoked by alias); 5 Sep 2018 20:59:04 -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 82363 invoked by uid 89); 5 Sep 2018 20:59:04 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:909 X-HELO: mail-wr1-f51.google.com Received: from mail-wr1-f51.google.com (HELO mail-wr1-f51.google.com) (209.85.221.51) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 05 Sep 2018 20:59:02 +0000 Received: by mail-wr1-f51.google.com with SMTP id s14-v6so102771wrw.6; Wed, 05 Sep 2018 13:59:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:in-reply-to:references:mime-version:content-transfer-encoding :subject:to:cc:from:message-id; bh=gkKXrOTJmCfm0r9zpVj24BHjkb3ceRSyWuIlA2z+TWU=; b=ZUieq89DLQlURvEL2dIoqksSv/hOPDgbaNvox0AGN3xuSZ6vnBIQ9o9L2oEtUAlDFL aAqzxr6lDD1Xap84L6Uaj6YltJtuO+O98uJ6S9cVKet1MKREQClkVrtJluYg3/gJzrpB wQoOXq1AtZdPR94qr1M+++j7xA9pIvnYqIBP2h7z6o4ds45sxF7ez8rprPyDIi7yhzkN eKsgQP3IPYBERHBUstjs5gcfuNYVWvvQaRW/blM341kWtr2bZRNBy3K1oYpTmwyF7ERr obMOa/yyoO6bWiPCxu8IHK0P0eLjMI4TwoUO5DTGd6FYrBNvddYa72lQO3QumqmIMu41 /e3A== Return-Path: Received: from [10.56.232.154] (089144209158.atnat0018.highway.a1.net. [89.144.209.158]) by smtp.gmail.com with ESMTPSA id e133-v6sm5650516wma.33.2018.09.05.13.58.59 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 05 Sep 2018 13:59:00 -0700 (PDT) Date: Wed, 05 Sep 2018 20:59:00 -0000 In-Reply-To: References: <20180905145732.404-10-rep.dot.nop@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [PATCH,FORTRAN 09/29] Use stringpool for modules To: Janne Blomqvist CC: Fortran List ,aldot@gcc.gnu.org,GCC Patches From: Bernhard Reutner-Fischer Message-ID: X-IsSubscribed: yes X-SW-Source: 2018-09/txt/msg00068.txt.bz2 On 5 September 2018 20:44:05 CEST, Janne Blomqvist wrote: >On Wed, Sep 5, 2018 at 6:00 PM Bernhard Reutner-Fischer < >rep.dot.nop@gmail.com> wrote: > >> diff --git a/gcc/fortran/match.c b/gcc/fortran/match.c >> index 38827ed4637..6596bd87c09 100644 >> --- a/gcc/fortran/match.c >> +++ b/gcc/fortran/match.c >> @@ -1274,15 +1274,22 @@ not_yes: >> case '%': >> matches++; >> break; /* Skip. */ >> +#if 0 >> + /* If everybody is disciplined we do not need to reset >this. >> */ >> + case 'n': >> + vp =3D va_arg (argp, void **); /* FORNOW: NULL shouldn't >be */ >> + *vp =3D NULL; >> + break; >> +#else >> + case 'n': >> +#endif >> > >Some debugging leftover that should be removed? Well AFAIR this still blew up at some point. It's possible that this would = work out fine now that all %n should be converted. I'll have another look.