From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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-Archive: List-Post: List-Help: Sender: gcc-patches-owner@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, 06 Aug 2014 18:02:00 -0000 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 X-SW-Source: 2014-08/txt/msg00710.txt.bz2 --- 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)); -- 1.8.5.3