From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 108493 invoked by alias); 16 Jun 2017 10:16:44 -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 108289 invoked by uid 89); 16 Jun 2017 10:16:42 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=3.7 required=5.0 tests=AWL,BAYES_00,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPAM_BODY,SPF_PASS autolearn=no version=3.3.2 spammy=H*f:sk:8ae6002 X-Spam-User: qpsmtpd, 2 recipients X-HELO: mail-yw0-f176.google.com Received: from mail-yw0-f176.google.com (HELO mail-yw0-f176.google.com) (209.85.161.176) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 16 Jun 2017 10:16:40 +0000 Received: by mail-yw0-f176.google.com with SMTP id l75so16776415ywc.3; Fri, 16 Jun 2017 03:16:45 -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:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=1hvaYHGedVCV17DNzaiSvUQk5uHsN+5yms5ABdRMQzo=; b=A4OoxGnTQ66dUFcI+WGC48n/PLYpgF/rbYwM3YS3X1cK5+jvOyou4NW/lt0FIs/ZfV 4h5FpoEKt8Zqt9OqRIGVQ+JFdNP6aGhm4zTK+AVxi+NA82eO7miWC+YcRmqDLeuX3Mdr r2vsius+vXd6Dck4ZQcqf3jZ2MIFYRr5Pd4qbt+sXRz3uENkZ4yvjO5AmsWEzViV0D4p Yzs8svk/PhnK2iyHFROENX31a5vRK9r0aqwK1lAqS4uzMHl6OyMYW8bw3iTxZO9Yn6IR R5hdOns5FYs4ucNPftfMHhYJBxjVfHynVnsKZU6GsmUgflMXf8/1in9GxhZn4nW53iZC rlFA== X-Gm-Message-State: AKS2vOxsXt+gK9P8pD2lxGmCwEnLqOi+NiQZ9rrxw70ZA9aNWJd0eH0z eSR/Qj/0I9xcvPaPfJh+6YsRM4I1Hw== X-Received: by 10.13.204.3 with SMTP id o3mr7946769ywd.60.1497608203591; Fri, 16 Jun 2017 03:16:43 -0700 (PDT) MIME-Version: 1.0 Received: by 10.129.174.2 with HTTP; Fri, 16 Jun 2017 03:16:43 -0700 (PDT) In-Reply-To: References: <8ae60027-f7ea-4970-0ac7-f4ee0e00afe0@netcologne.de> From: Janus Weil Date: Fri, 16 Jun 2017 10:16:00 -0000 Message-ID: Subject: Re: [Patch, Fortran, F03] PR 80983: memory leak when calling procedure-pointer component with allocatable result To: Christophe Lyon Cc: Thomas Koenig , gfortran , gcc-patches Content-Type: text/plain; charset="UTF-8" X-SW-Source: 2017-06/txt/msg01179.txt.bz2 2017-06-16 11:11 GMT+02:00 Christophe Lyon : > Hi, > > On 15 June 2017 at 23:18, Janus Weil wrote: >> 2017-06-15 15:33 GMT+02:00 Thomas Koenig : >>> Hi Janus, >>> >>>> It regtests cleanly on x86_64-linux-gnu. Ok for trunk? >>> >>> >>> OK. >>> >>> Thanks for the patch! >> >> Thanks, Thomas! Committed as r249227. >> > > There's a problem with the new test. It says: > gfortran.dg/proc_ptr_comp_51.f90 -O : dump file does not exist > UNRESOLVED: gfortran.dg/proc_ptr_comp_51.f90 -O > scan-tree-dump-times original "__builtin_free" 3 > > You probably either want to add: > ! { dg-options "-fdump-tree-original" } > or to remove: > ! { dg-final { scan-tree-dump-times "__builtin_free" 3 "original" } } Thanks for your attention, Christophe. I wanted the first of these two options, but apparently forgot that line ... :( Fixed with r249243. Cheers, Janus