From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ciao.gmane.io (ciao.gmane.io [116.202.254.214]) by sourceware.org (Postfix) with ESMTPS id CED083849AF2 for ; Wed, 24 Apr 2024 19:26:30 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org CED083849AF2 Authentication-Results: sourceware.org; dmarc=fail (p=quarantine dis=none) header.from=gmx.de Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=m.gmane-mx.org ARC-Filter: OpenARC Filter v1.0.0 sourceware.org CED083849AF2 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=116.202.254.214 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1713986792; cv=none; b=pIyZCNjq0xiQii8DE8nahEzK/PG4s3PYz09wV6QrBXV3sQx0yhn3ROpsGToXBsvS6rWzIUmy5VibrYPD46MBBBpKlLZt2lYa0u0B7P6PAT4Gfa4HtXZTSOF/7EMoLJokJvX9Spkhy6xWW19cPHpjlqpMecRfISAHL2dh/bj4LSA= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1713986792; c=relaxed/simple; bh=R8MAdJdiKnIejBxZf/NSrtGEHBOlhJVtqfXaROeVo48=; h=To:From:Subject:Date:Message-ID:Mime-Version; b=o+E2E68GQrKqe+X2TbLkAmxE+rFS3TDgZuKPnB1jliBe2X7eSi4Rw8vw+yu9oXEdt5L2Q3iBhtM2n2h5hWDPYL3lv35lHzYTp4c4ZjMnyxomfEvivjBwFZZa/G0veLYdAqlGISj9dQ1AIoX3R3hRYckH3VtOIDZH1nQRpMQZD8c= ARC-Authentication-Results: i=1; server2.sourceware.org Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1rziGA-0000nd-HQ for gcc-patches@gcc.gnu.org; Wed, 24 Apr 2024 21:26:26 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: gcc-patches@gcc.gnu.org From: Harald Anlauf Subject: Re: [Patch, fortran] PR93678 - [11/12/13/14 Regression] ICE with TRANSFER and typebound procedures Date: Wed, 24 Apr 2024 21:26:19 +0200 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit User-Agent: Mozilla Thunderbird Content-Language: en-US In-Reply-To: Cc: fortran@gcc.gnu.org X-Spam-Status: No, score=-3.2 required=5.0 tests=BAYES_00,FREEMAIL_FORGED_FROMDOMAIN,FREEMAIL_FROM,HEADER_FROM_DIFFERENT_DOMAINS,KAM_DMARC_STATUS,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Message-ID: <20240424192619.EXot3xXJPVvrGSGt7rX84CC6-zbsiOfGhxoEFzZimd8@z> Hi Paul, On 4/24/24 18:26, Paul Richard Thomas wrote: > Hi there, > > This regression turned out to be low hanging fruit, although it has taken > four years to reach it :-( > > The ChangeLog says it all. OK for mainline and backporting after a suitable > delay? yes to both. Thanks for "picking" this fruit! Harald > Paul > > Fortran: Fix ICE in gfc_trans_create_temp_array from bad type [PR93678] > > 2024-04-24 Paul Thomas > > gcc/fortran > PR fortran/93678 > * trans-expr.cc (gfc_conv_procedure_call): Use the interface, > where possible, to obtain the type of character procedure > pointers of class entities. > > gcc/testsuite/ > PR fortran/93678 > * gfortran.dg/pr93678.f90: New test. >