From patchwork Mon Apr 21 16:57:28 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Malcolm X-Patchwork-Id: 340913 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 416D4140076 for ; Tue, 22 Apr 2014 11:50:07 +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=Dv1eycV2t9OOAW1LdCkQCpdejWK+52agV1iXRw42F1DYRqNHq8DvY FLaOLyPJpQNLhNe4w2p/E9cJ01X2i70bFpYc2lFtpw0GB+2GbRhtg+Uo7bX7LxG8 TPmenCX8OUevUzsp1msrsImPnuipzKX9a24YXZjmMw4k4b1N0T53mA= 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=nJ8D5oC+O8Zgm26UY2Dljni62oU=; b=NfFt6E0dYmWYbZySxwcn SXYQxTfE4kgdNC4Cw/wNW+VyE1gTq/SpfrENhs61VNv/Je6pe00GaYV2aZbZOcSN Xxt4QU17/1as6UW07tgL093iZU6EvrFzqxAVS4vtaLPI4oGa8D14AvJCcaFPJ7GJ v8pZIpptdkxqC1fqkR/iajE= Received: (qmail 28350 invoked by alias); 21 Apr 2014 17:13:48 -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 28317 invoked by uid 89); 21 Apr 2014 17:13:47 -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; Mon, 21 Apr 2014 17:13:46 +0000 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WcHXD-0002Od-PI for gcc-patches@gcc.gnu.org; Mon, 21 Apr 2014 12:57:41 -0400 Received: from mx1.redhat.com ([209.132.183.28]:55610) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WcHXD-0002OW-I4 for gcc-patches@gcc.gnu.org; Mon, 21 Apr 2014 12:57:35 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s3LGuX7q019734 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Mon, 21 Apr 2014 12:56:34 -0400 Received: from c64.redhat.com (vpn-227-164.phx2.redhat.com [10.3.227.164]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s3LGtvOI023014; Mon, 21 Apr 2014 12:56:33 -0400 From: David Malcolm To: gcc-patches@gcc.gnu.org Cc: David Malcolm Subject: [PATCH 57/89] Concretize parameter to gimple_call_copy_skip_args Date: Mon, 21 Apr 2014 12:57:28 -0400 Message-Id: <1398099480-49147-58-git-send-email-dmalcolm@redhat.com> In-Reply-To: <1398099480-49147-1-git-send-email-dmalcolm@redhat.com> References: <1398099480-49147-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/ * gimple.c (gimple_call_copy_skip_args): Require a gimple_call. * gimple.h (gimple_call_copy_skip_args): Likewise. --- gcc/gimple.c | 2 +- gcc/gimple.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/gimple.c b/gcc/gimple.c index 6de651d..75a9f5f 100644 --- a/gcc/gimple.c +++ b/gcc/gimple.c @@ -2044,7 +2044,7 @@ canonicalize_cond_expr_cond (tree t) the positions marked by the set ARGS_TO_SKIP. */ gimple_call -gimple_call_copy_skip_args (gimple stmt, bitmap args_to_skip) +gimple_call_copy_skip_args (gimple_call stmt, bitmap args_to_skip) { int i; int nargs = gimple_call_num_args (stmt); diff --git a/gcc/gimple.h b/gcc/gimple.h index 49385bd..cf21083 100644 --- a/gcc/gimple.h +++ b/gcc/gimple.h @@ -1696,7 +1696,7 @@ bool gimple_assign_rhs_could_trap_p (gimple); extern void dump_gimple_statistics (void); unsigned get_gimple_rhs_num_ops (enum tree_code); extern tree canonicalize_cond_expr_cond (tree); -gimple_call gimple_call_copy_skip_args (gimple, bitmap); +gimple_call gimple_call_copy_skip_args (gimple_call, bitmap); extern bool gimple_compare_field_offset (tree, tree); extern tree gimple_unsigned_type (tree); extern tree gimple_signed_type (tree);