From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19302 invoked by alias); 6 Aug 2014 17:42:19 -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 19271 invoked by uid 89); 6 Aug 2014 17:42:19 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.2 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 17:42:18 +0000 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XF4su-0000sK-Ry for gcc-patches@gcc.gnu.org; Wed, 06 Aug 2014 13:20:26 -0400 Received: from mx1.redhat.com ([209.132.183.28]:16644) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XF4su-0000sA-Ky for gcc-patches@gcc.gnu.org; Wed, 06 Aug 2014 13:20:20 -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 s76HJK8x008040 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Wed, 6 Aug 2014 13:19:20 -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 s76HJ2o5030913; Wed, 6 Aug 2014 13:19:19 -0400 From: David Malcolm To: gcc-patches@gcc.gnu.org Cc: David Malcolm Subject: [PATCH 029/236] rtl_data.x_parm_birth_insn is an insn Date: Wed, 06 Aug 2014 17:42:00 -0000 Message-Id: <1407345815-14551-30-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 X-SW-Source: 2014-08/txt/msg00639.txt.bz2 gcc/ * function.h (struct rtl_data): Strengthen field "x_parm_birth_insn" from rtx to rtx_insn *. * function.c (struct assign_parm_data_all): Strengthen fields "first_conversion_insn" and "last_conversion_insn" from rtx to rtx_insn *. --- gcc/function.c | 4 ++-- gcc/function.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/function.c b/gcc/function.c index ec2ea26..4d8d32d 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -2181,8 +2181,8 @@ struct assign_parm_data_all struct args_size stack_args_size; tree function_result_decl; tree orig_fnargs; - rtx first_conversion_insn; - rtx last_conversion_insn; + rtx_insn *first_conversion_insn; + rtx_insn *last_conversion_insn; HOST_WIDE_INT pretend_args_size; HOST_WIDE_INT extra_pretend_bytes; int reg_parm_stack_space; diff --git a/gcc/function.h b/gcc/function.h index a8294b2..0367225 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -303,7 +303,7 @@ struct GTY(()) rtl_data { HOST_WIDE_INT x_frame_offset; /* Insn after which register parms and SAVE_EXPRs are born, if nonopt. */ - rtx x_parm_birth_insn; + rtx_insn *x_parm_birth_insn; /* List of all used temporaries allocated, by level. */ vec *x_used_temp_slots; -- 1.8.5.3