From patchwork Wed Aug 6 17:21:02 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Malcolm X-Patchwork-Id: 377338 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 A0AA414009B for ; Thu, 7 Aug 2014 04:25:10 +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=dLG6qDrouoldMbLxgH+OrugUorIWxOC0BKMkxP5zfLpoThB3tzdJt gJDbFYp7oqyMWX2CJrRGsGwnSvD06IRPMkdLD5DliXucCDY7cLoUzR+gtpi9lz/q GSwsVJ4Mg09tHXMq5XRi3kG9fyYnGETAvDfy8TPYNlPUSMJYM/Vfc0= 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=0UxAFwQFz2NOPArmnRVLQ1U423M=; b=SeWLJRfTH8zVkWqfWdZt p/kEQFLGOCsQL/Wbr7y+Zt1tzjuFKYf3Umz/O5eDKbklHtOcvByENXh651hgV3YT oi0Am66mb+knI77GM/AS0p54VotuJHwes9bDTd7N8Xk3BffXNeTLxXsZ2B5hKPSg SRcLlxJF3s5Cg6m73Mlbhws= Received: (qmail 11034 invoked by alias); 6 Aug 2014 18:06:02 -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 10937 invoked by uid 89); 6 Aug 2014 18:06:01 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL, BAYES_00 autolearn=ham version=3.3.2 X-HELO: eggs.gnu.org Received: from eggs.gnu.org (HELO eggs.gnu.org) (208.118.235.92) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Wed, 06 Aug 2014 18:06:00 +0000 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XF4tQ-00014X-4g for gcc-patches@gcc.gnu.org; Wed, 06 Aug 2014 13:20:58 -0400 Received: from mx1.redhat.com ([209.132.183.28]:24104) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XF4tP-000144-Tz for gcc-patches@gcc.gnu.org; Wed, 06 Aug 2014 13:20:52 -0400 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 s76HJpcR008316 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Wed, 6 Aug 2014 13:19:51 -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 s76HJ2ox030913; Wed, 6 Aug 2014 13:19:50 -0400 From: David Malcolm To: gcc-patches@gcc.gnu.org Cc: David Malcolm Subject: [PATCH 083/236] init-regs.c: rtx_insn Date: Wed, 6 Aug 2014 13:21:02 -0400 Message-Id: <1407345815-14551-84-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-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 X-IsSubscribed: yes gcc/ * init-regs.c (initialize_uninitialized_regs): Strengthen locals "insn" and "move_insn" from rtx to rtx_insn *. --- gcc/init-regs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/init-regs.c b/gcc/init-regs.c index 59c5bc9..d170da6 100644 --- a/gcc/init-regs.c +++ b/gcc/init-regs.c @@ -61,7 +61,7 @@ initialize_uninitialized_regs (void) FOR_EACH_BB_FN (bb, cfun) { - rtx insn; + rtx_insn *insn; bitmap lr = DF_LR_IN (bb); bitmap ur = DF_LIVE_IN (bb); bitmap_clear (already_genned); @@ -96,7 +96,7 @@ initialize_uninitialized_regs (void) if (bitmap_bit_p (lr, regno) && (!bitmap_bit_p (ur, regno))) { - rtx move_insn; + rtx_insn *move_insn; rtx reg = DF_REF_REAL_REG (use); bitmap_set_bit (already_genned, regno);