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 9D5283858D38 for ; Sat, 28 Jan 2023 17:13:40 +0000 (GMT) Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=m.gmane-mx.org Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1pLolm-00057g-TM for gcc-patches@gcc.gnu.org; Sat, 28 Jan 2023 18:13:38 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: gcc-patches@gcc.gnu.org From: Harald Anlauf Subject: *PING* [PATCH] Fortran: fix ICE in compare_bound_int [PR108527] Date: Sat, 28 Jan 2023 18:13:34 +0100 Message-ID: <951878c0-f0e4-e23d-4053-d8590cd4ae96@gmx.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.6.1 Content-Language: en-US In-Reply-To: Cc: fortran@gcc.gnu.org X-Spam-Status: No, score=-3.1 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: <20230128171334.BJAY79swVnsI8KxUyT-gBLLBd2SVsgMvb_C-uNAP4kw@z> Early gentle ping. Am 24.01.23 um 22:48 schrieb Harald Anlauf via Gcc-patches: > Dear all, > > when checking expressions for array sections, we need to ensure > that these use only type INTEGER. However, it does not make sense > to generate an internal error when encountering wrong types, > but rather take the ordinary route of error recovery. > > The initial fix was provided by Steve. > > While working on the same PR, I found that the comments related > to the logic needed a minor adjustment, and the logic could be > cleaned up to actually match the intended comment. > > Regtested on x86_64-pc-linux-gnu. OK for mainline? > > Thanks, > Harald >