From patchwork Wed Aug 6 17:22:49 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Malcolm X-Patchwork-Id: 377316 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 790DA140086 for ; Thu, 7 Aug 2014 04:20: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=g76r8Cva34s4zEEwM/4lQB0Zm5ls8fzOooTkDetU8WteConMtUXvx yjKYhyUN0RLqFeQH08hnTidBfFk/6BuTBfoEa4kc94i85bQHHxGNBRmzGCPm5Pxo ix3iG7pQZGyRAmXLFwtwM+6pPk+HuHA54xewMfGeI/r5SEDzHMu2y4= 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=+mdzH4blHghfA9Zb6XcBnrDNwlM=; b=rTDcjxxGVkLbAM8BCvXl L5j4IrOUMg3y5eyBK38dX0NNDMsbr4mUvV/O4B9+lLYj5sAWIbRAL2//NJ1TjCla 4Moo1vFRFc3U7uQx5HiBWbopB83IET6xwkNYkUDJb5sOGifa4GKfb7t2bY2VOywB czWxfodjIgD4e4JgnEYL9/w= Received: (qmail 25951 invoked by alias); 6 Aug 2014 18:02:55 -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 25830 invoked by uid 89); 6 Aug 2014 18:02:54 -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:02:53 +0000 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XF4uP-0001lL-U6 for gcc-patches@gcc.gnu.org; Wed, 06 Aug 2014 13:21:59 -0400 Received: from mx1.redhat.com ([209.132.183.28]:63482) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XF4uP-0001lE-Mh for gcc-patches@gcc.gnu.org; Wed, 06 Aug 2014 13:21:53 -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 s76HKrNZ024099 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Wed, 6 Aug 2014 13:20:53 -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 s76HJ2qk030913; Wed, 6 Aug 2014 13:20:52 -0400 From: David Malcolm To: gcc-patches@gcc.gnu.org Cc: David Malcolm Subject: [PATCH 190/236] Remove insn_addresses_new from 'various scheduling strengthenings' Date: Wed, 6 Aug 2014 13:22:49 -0400 Message-Id: <1407345815-14551-191-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/insn-addr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/insn-addr.h b/gcc/insn-addr.h index e255ac4..aec09fd 100644 --- a/gcc/insn-addr.h +++ b/gcc/insn-addr.h @@ -38,7 +38,7 @@ extern int insn_current_address; #define INSN_ADDRESSES_SIZE() (insn_addresses_.length ()) static inline void -insn_addresses_new (rtx_insn *insn, int insn_addr) +insn_addresses_new (rtx insn, int insn_addr) { unsigned insn_uid = INSN_UID ((insn));