From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28741 invoked by alias); 20 Oct 2014 10:55:33 -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 28726 invoked by uid 89); 20 Oct 2014 10:55:33 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Mon, 20 Oct 2014 10:55:31 +0000 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s9KAtRFW020756 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Mon, 20 Oct 2014 06:55:28 -0400 Received: from tucnak.zalov.cz (ovpn-116-116.ams2.redhat.com [10.36.116.116]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s9KAtQ2w013982 (version=TLSv1/SSLv3 cipher=AES128-GCM-SHA256 bits=128 verify=NO); Mon, 20 Oct 2014 06:55:27 -0400 Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.14.9/8.14.9) with ESMTP id s9KAtOPh015983; Mon, 20 Oct 2014 12:55:24 +0200 Received: (from jakub@localhost) by tucnak.zalov.cz (8.14.9/8.14.9/Submit) id s9KAtNgO015982; Mon, 20 Oct 2014 12:55:23 +0200 Date: Mon, 20 Oct 2014 11:19:00 -0000 From: Jakub Jelinek To: GCC Patches , Richard Biener Subject: Re: PR debug/60655, debug loc expressions Message-ID: <20141020105523.GL10376@tucnak.redhat.com> Reply-To: Jakub Jelinek References: <20140905013004.GN17693@bubble.grove.modra.org> <20140909115027.GR17693@bubble.grove.modra.org> <20140909143050.GU17454@tucnak.redhat.com> <20140910021629.GS17693@bubble.grove.modra.org> <20141016065557.GJ4267@bubble.grove.modra.org> <20141016070758.GF10376@tucnak.redhat.com> <20141020104656.GU4267@bubble.grove.modra.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20141020104656.GU4267@bubble.grove.modra.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-IsSubscribed: yes X-SW-Source: 2014-10/txt/msg01892.txt.bz2 On Mon, Oct 20, 2014 at 09:16:57PM +1030, Alan Modra wrote: > PR debug/60655 > * simplify-rtx.c (simplify_plus_minus): Delete unused "input_ops". > Increase "ops" array size. Correct array size tests. Init > n_constants in loop. Break out of innermost loop when finding > a trivial CONST expression. LGTM, thanks. Jakub