From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id D02E2385840F; Fri, 24 Feb 2023 19:42:58 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D02E2385840F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1677267778; bh=5IITJfxZjTWDyy5MjvqaN9ajBqDXqhat7CHNGauKv1Q=; h=From:To:Subject:Date:In-Reply-To:References:From; b=Vq2t0xxPayt0GkhD/6mO8NU+cQ53EJCEu7RzvU+P87+PIkzJKOPDSI9AiwNXc/A7B YOGx1E35IcLeLsU0NyinCkPsDCBdI20eh/nbRJYx+Y5cFA0DC/g2C+cNR8fnvpp/NZ 1MR14DRAX3d+j9IHmqZgQaGHnOmUoA9rrJHmQC8s= From: "mikael at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/108923] memory leak of get_intrinsic_dummy_arg result Date: Fri, 24 Feb 2023 19:42:58 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: mikael at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: mikael at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D108923 --- Comment #3 from Mikael Morin --- Here is a small reproducer by the way: program p implicit none call s(0) contains subroutine s(i) integer :: i end subroutine s end program p=