From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 48644 invoked by alias); 29 Oct 2015 19:43:37 -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 48622 invoked by uid 89); 29 Oct 2015 19:43:36 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=AWL,BAYES_40,KAM_LAZY_DOMAIN_SECURITY,RCVD_IN_DNSWL_LOW,RP_MATCHES_RCVD autolearn=no version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: cc-smtpout3.netcologne.de Received: from cc-smtpout3.netcologne.de (HELO cc-smtpout3.netcologne.de) (89.1.8.213) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Thu, 29 Oct 2015 19:43:35 +0000 Received: from cc-smtpin2.netcologne.de (cc-smtpin2.netcologne.de [89.1.8.202]) by cc-smtpout3.netcologne.de (Postfix) with ESMTP id 96B76123E5; Thu, 29 Oct 2015 20:43:30 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by cc-smtpin2.netcologne.de (Postfix) with ESMTP id 91E4411DF2; Thu, 29 Oct 2015 20:43:30 +0100 (CET) Received: from [78.35.169.130] (helo=cc-smtpin2.netcologne.de) by localhost with ESMTP (eXpurgate 4.0.9) (envelope-from ) id 563276e2-0afd-7f0000012729-7f000001a541-1 for ; Thu, 29 Oct 2015 20:43:30 +0100 Received: from [192.168.178.20] (xdsl-78-35-169-130.netcologne.de [78.35.169.130]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by cc-smtpin2.netcologne.de (Postfix) with ESMTPSA; Thu, 29 Oct 2015 20:43:28 +0100 (CET) Subject: Re: [PATCH] PR fortran/36192 -- yet another fix for an ICE To: Steve Kargl , fortran@gcc.gnu.org, gcc-patches@gcc.gnu.org References: <20151029183512.GA67095@troutmask.apl.washington.edu> From: Thomas Koenig Message-ID: <563276DF.7030102@netcologne.de> Date: Thu, 29 Oct 2015 20:15:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <20151029183512.GA67095@troutmask.apl.washington.edu> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2015-10/txt/msg03279.txt.bz2 Am 29.10.2015 um 19:35 schrieb Steve Kargl: > The patch for PR fortran/36192 that I committed here: > > https://gcc.gnu.org/ml/gcc-bugs/2015-10/msg02160.html > > cured an ICE for a testcase that was reduced from the > originally submitted mutilated Fortran code. The > original code could in fact invoke another ICE. This > patch cures that ICE. The patch simply checks that > the array indices have INTEGER type before calling > GMP routines. Tested om x86_64-*-freebsd. > OK to commit? OK. I would also have considered this one obvious. Thanks for the patch! Thomas