From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ua1-x936.google.com (mail-ua1-x936.google.com [IPv6:2607:f8b0:4864:20::936]) by sourceware.org (Postfix) with ESMTPS id 58EB4385DC17; Fri, 10 Apr 2020 15:12:55 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 58EB4385DC17 Received: by mail-ua1-x936.google.com with SMTP id 74so707855uau.11; Fri, 10 Apr 2020 08:12:55 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=y4o3VPsJvqXjlS1ThTs8YeEwCWgsrUt3Y073DJvYgxU=; b=YlkaWFCOQGfNGKwxT5hE2Pipu0k64WeN11qyQg64L/djJUII7029NW0dZuiFx5Uf8s omucbRxpEe0ipYL+VxZLm51o9b5vn/gJ4FsTHRlYNoKEOhIYKwKPq3hgcjLyO3byWP7K CX6BTLeaIeX05pmP/qHOpib1E54o580+oha+ZAUCXFLA1bvBpPoZ1THsPHc2SISoirvw EDNumnuiXJA+pbridWBhKqoLA9fNsqcf+X0K7QC/9yhbgdah/XcrOiwTBIn/MP9kSwmT tOm9AMZs7CgklUwD170uvuGnqbgVZJIsE9162jkvlOgRiZpX4UOGtXhDszPTGo1CP0vR X6vw== X-Gm-Message-State: AGi0PubADXWAoXFJiFi2eyijel88EVEZNi66D9bhc4tcqhypWzvWzQXb 28vkYBXPCH8kGMw4kGc4lA1yQ5ZV32F17ueVeD56+aEM X-Google-Smtp-Source: APiQypJ1olqbFTHtM5q3pRecl4FjA7uwJpWWK6IotMocdUV1/yo3jPhvaMcyaoEQMc8HUfNIq9pYJzLbKN81pQ6MsSw= X-Received: by 2002:ab0:7556:: with SMTP id k22mr3444683uaq.104.1586531574798; Fri, 10 Apr 2020 08:12:54 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: Fritz Reese Date: Fri, 10 Apr 2020 11:12:43 -0400 Message-ID: Subject: Re: [PATCH, Fortran] -- PR fortran/87923 -- fix ICE when resolving I/O tags and simplify io.c To: Rainer Orth Cc: Fritz Reese via Gcc-patches , Tobias Burnus , fortran Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-6.2 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Apr 2020 15:12:56 -0000 On Fri, Apr 10, 2020 at 8:14 AM Rainer Orth wrote: > > Hi Fritz, [...] > one new testcases comes up as UNRESOLVED everywhere: > > +UNRESOLVED: gfortran.dg/asynchronous_5.f03 -O scan-tree-dump-not original "volatile.*?ivar_noasync" > +UNRESOLVED: gfortran.dg/asynchronous_5.f03 -O scan-tree-dump-times original "volatile.*?ccvar_async" 1 > +UNRESOLVED: gfortran.dg/asynchronous_5.f03 -O scan-tree-dump-times original "volatile.*?darrvar_async" 1 > +UNRESOLVED: gfortran.dg/asynchronous_5.f03 -O scan-tree-dump-times original "volatile.*?dvar_async" 1 > +UNRESOLVED: gfortran.dg/asynchronous_5.f03 -O scan-tree-dump-times original "volatile.*?ivar_async" 1 > +UNRESOLVED: gfortran.dg/asynchronous_5.f03 -O scan-tree-dump-times original "volatile.*?lvar_async" 1 > +UNRESOLVED: gfortran.dg/asynchronous_5.f03 -O scan-tree-dump-times original "volatile.*?rvar_async" 1 > > gfortran.dg/asynchronous_5.f03 -O : dump file does not exist > > It has several scan-tree-dump* checks, but no corresponding > -fdump-tree-* option. Please fix (and make sure not to look only for > FAILs during regtesting in the future). > > Rainer Ah! My mistake... I will fix and look for this in the future. Fritz