From patchwork Thu Jul 18 16:03:48 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Malcolm X-Patchwork-Id: 260084 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 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "localhost", Issuer "www.qmailtoaster.com" (not verified)) by ozlabs.org (Postfix) with ESMTPS id 30A952C008F for ; Fri, 19 Jul 2013 02:04:04 +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 :message-id:subject:from:to:date:content-type:mime-version; q= dns; s=default; b=FbCtt1SnCXyhmzllm155lYaaXB3K8WpTl2an9sKaKbRi+r zw7Mdw5LjuKObeyCi3aunVI21K68uuk/ElvPQ31nhpZBat6UFqhAejCmHcGPHcJI CktHZjW4j55gx/xlao3GfQDNLLe0pypqgPmYyUSO6FpvxvCec5aIK2EOFuJt8= 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 :message-id:subject:from:to:date:content-type:mime-version; s= default; bh=JSeDE33D985zXh8qmyhAZiy2hNs=; b=PUJZyWQP/hNWKufaKjl4 aLWwobDC9S22BD8U43RGMNSsydrQkz9+hwSPKYq22eZtLSMnhrvDge/+gsK6dmdj mTeCn9LVildZ1Uv+EO45OGOOMLKVkYSMYbd+IAJTv4PvPwE6Ko+bI6jsMq2aLaeX 27ELBbDKY97ajSpsbawyqDQ= Received: (qmail 7142 invoked by alias); 18 Jul 2013 16:03:58 -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 7104 invoked by uid 89); 18 Jul 2013 16:03:57 -0000 X-Spam-SWARE-Status: No, score=-4.3 required=5.0 tests=AWL, BAYES_40, RCVD_IN_HOSTKARMA_W, RCVD_IN_HOSTKARMA_WL, RDNS_NONE, SPF_HELO_PASS, SPF_PASS autolearn=no version=3.3.1 Received: from Unknown (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Thu, 18 Jul 2013 16:03:56 +0000 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r6IG3m9g028161 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 18 Jul 2013 12:03:49 -0400 Received: from [10.18.25.132] ([10.18.25.132]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id r6IG3mw3004663 for ; Thu, 18 Jul 2013 12:03:48 -0400 Message-ID: <1374163428.31223.54.camel@surprise> Subject: [PATCH] Remove redundant decl of pass_ipa_lto_wpa_fixup From: David Malcolm To: gcc-patches@gcc.gnu.org Date: Thu, 18 Jul 2013 12:03:48 -0400 Mime-Version: 1.0 X-Virus-Found: No pass_ipa_lto_wpa_fixup was removed in r158622: 2010-04-21 Jan Hubicka [...snip...] * passes.c (init_optimization_passes): Remove pass_ipa_lto_wpa_fixup. but that commit left the declaration still present in tree-pass.h This patch removes the redundant decl. Successfully bootstrapped on x86_64-unknown-linux-gnu OK for trunk? [this one seems obvious to me, but doesn't quite match the letter of the rules in "Free for all" in http://gcc.gnu.org/svnwrite.html , and I'm new here, hence I'm asking out of an abundance of caution :) ] Thanks Dave From da20870a2220873df67067fcae9a00bace75d376 Mon Sep 17 00:00:00 2001 From: David Malcolm Date: Wed, 17 Jul 2013 23:27:36 -0400 Subject: [PATCH] Remove redundant decl of pass_ipa_lto_wpa_fixup --- gcc/tree-pass.h | 1 - 1 file changed, 1 deletion(-) diff --git a/gcc/tree-pass.h b/gcc/tree-pass.h index b8c59a7..547f355 100644 --- a/gcc/tree-pass.h +++ b/gcc/tree-pass.h @@ -383,7 +383,6 @@ extern struct ipa_opt_pass_d pass_ipa_cp; extern struct ipa_opt_pass_d pass_ipa_reference; extern struct ipa_opt_pass_d pass_ipa_pure_const; extern struct simple_ipa_opt_pass pass_ipa_pta; -extern struct ipa_opt_pass_d pass_ipa_lto_wpa_fixup; extern struct ipa_opt_pass_d pass_ipa_lto_finish_out; extern struct simple_ipa_opt_pass pass_ipa_tm; extern struct ipa_opt_pass_d pass_ipa_profile; -- 1.7.11.7