From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19500 invoked by alias); 6 Aug 2014 17:22:52 -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 19383 invoked by uid 89); 6 Aug 2014 17:22:50 -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 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:22:49 +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 s76HMm4n026344 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Wed, 6 Aug 2014 13:22:48 -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 s76HJ2qm030913; Wed, 6 Aug 2014 13:20:53 -0400 From: David Malcolm To: gcc-patches@gcc.gnu.org Cc: David Malcolm Subject: [PATCH 192/236] Tweak to dse.c Date: Wed, 06 Aug 2014 17:22:00 -0000 Message-Id: <1407345815-14551-193-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 X-SW-Source: 2014-08/txt/msg00579.txt.bz2 gcc/ * dse.c (dse_step6): Strengthen local "rinsn" from rtx to rtx_insn *. --- gcc/dse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/dse.c b/gcc/dse.c index 0dc6b22..a122eff 100644 --- a/gcc/dse.c +++ b/gcc/dse.c @@ -3624,7 +3624,7 @@ dse_step6 (void) && s_info->redundant_reason->insn && INSN_P (s_info->redundant_reason->insn)) { - rtx rinsn = s_info->redundant_reason->insn; + rtx_insn *rinsn = s_info->redundant_reason->insn; if (dump_file && (dump_flags & TDF_DETAILS)) fprintf (dump_file, "Locally deleting insn %d " "because insn %d stores the " -- 1.8.5.3