From patchwork Wed Aug 6 17:20:37 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Malcolm X-Patchwork-Id: 377111 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 5D8BD1400AF for ; Thu, 7 Aug 2014 03:25:25 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:cc:subject:date:message-id:in-reply-to:references; q=dns; s= default; b=yEZZb8+3K+3jZTg2RusJJR1CqF7fHhDUQkm/P+1Togbj8CqB1vXFC sGNdkyrP8u9waHHIHnZYkhyt+O6hnOU8uIDX7hRhNaqf0Lx3PiwsXjba98HFRQRY 5Fq/aDIKzUcizQHZ4WcfjGLvEA2KuLNf8hAQob0BPlvizrAlgtZnYw= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:cc:subject:date:message-id:in-reply-to:references; s= default; bh=awxZs2ya65DLYwI7yQ7nwfOvg2A=; b=aytoUsGwxy9UOtoFDklI ZcEBffXbhKM536xNwdztBhX/pH9hP7hyDEzOywIKAkp+3VM4eIHTDD6w3TkUqriQ TCUMKsnhpOOP3VXSkFM9HcO9TxU6WkJq1W71gW97Qld5RhVf7kGAK5h6NjBO1SiU E86tBh3CNoiAG08lVZIq6e4= Received: (qmail 31516 invoked by alias); 6 Aug 2014 17:19:47 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 30897 invoked by uid 89); 6 Aug 2014 17:19:41 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.5 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; Wed, 06 Aug 2014 17:19:40 +0000 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s76HJarA028678 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Wed, 6 Aug 2014 13:19:37 -0400 Received: from c64.redhat.com (vpn-239-139.phx2.redhat.com [10.3.239.139]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s76HJ2oY030913; Wed, 6 Aug 2014 13:19:36 -0400 From: David Malcolm To: gcc-patches@gcc.gnu.org Cc: David Malcolm Subject: [PATCH 058/236] cfgloop.c: Use rtx_insn Date: Wed, 6 Aug 2014 13:20:37 -0400 Message-Id: <1407345815-14551-59-git-send-email-dmalcolm@redhat.com> In-Reply-To: <1407345815-14551-1-git-send-email-dmalcolm@redhat.com> References: <1407345815-14551-1-git-send-email-dmalcolm@redhat.com> X-IsSubscribed: yes gcc/ * cfgloop.c (loop_exits_from_bb_p): Strengthen local "insn" from rtx to rtx_insn *. --- gcc/cfgloop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/cfgloop.c b/gcc/cfgloop.c index 73f79ef..6d1fe8d 100644 --- a/gcc/cfgloop.c +++ b/gcc/cfgloop.c @@ -1736,7 +1736,7 @@ loop_exits_from_bb_p (struct loop *loop, basic_block bb) location_t get_loop_location (struct loop *loop) { - rtx insn = NULL; + rtx_insn *insn = NULL; struct niter_desc *desc = NULL; edge exit;