From patchwork Mon Sep 9 19:32:18 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Malcolm X-Patchwork-Id: 273658 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 "www.sourceware.org", Issuer "StartCom Class 1 Primary Intermediate Server CA" (not verified)) by ozlabs.org (Postfix) with ESMTPS id E41C02C0106 for ; Tue, 10 Sep 2013 05:33:41 +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=m8AjwaBak0zS41zIXDaXXt9yehYvUrbvi+7nCXfCINdU3Ga+jBz2d bD2qdguESAcdwkFPu/IuhuhGB0Cxi6o/+bw8pZhhd52n9UzMs15pCNY/B9/OhAyJ mFX03kb9iGLbkmxxhvZsk9QJViPiB4f+oidlJ5UBIKazZnONWuVEnQ= 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=GCJrkcYr6O4eut5koNdPgEfGWS8=; b=Jaxr9vRr3iPuE+sbfy81 /5YsC5HZGgz46K8arjogOWYU5/ipWeWLZvfGtpWf6cJV+wvdEcraAxu7S4JFgcVr YYrGiTqDyLSN1w26KWTBJPae9DOwgWPwXKXjFTjROe9e1mogZNF1/Hx56BMys71f a5Cw0WipWMkdvWEFpHOkHXE= Received: (qmail 21860 invoked by alias); 9 Sep 2013 19:32:53 -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 21800 invoked by uid 89); 9 Sep 2013 19:32:53 -0000 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, 09 Sep 2013 19:32:53 +0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-6.3 required=5.0 tests=AWL, BAYES_00, KHOP_THREADED, RCVD_IN_HOSTKARMA_W, RCVD_IN_HOSTKARMA_WL, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 X-HELO: eggs.gnu.org Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VJ7CV-0002kd-Ph for gcc-patches@gcc.gnu.org; Mon, 09 Sep 2013 15:32:49 -0400 Received: from mx1.redhat.com ([209.132.183.28]:16944) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VJ7CV-0002kH-I2 for gcc-patches@gcc.gnu.org; Mon, 09 Sep 2013 15:32:43 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r89JWg3C029373 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 9 Sep 2013 15:32:42 -0400 Received: from surprise.bos.redhat.com ([10.18.25.132]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r89JWdRw029294; Mon, 9 Sep 2013 15:32:42 -0400 From: David Malcolm To: gcc-patches@gcc.gnu.org Cc: Jan Hubicka , David Malcolm Subject: [PATCH v2 4/6] Remove symtab_node and const_symtab_node typedefs. Date: Mon, 9 Sep 2013 15:32:18 -0400 Message-Id: <1378755140-5555-5-git-send-email-dmalcolm@redhat.com> In-Reply-To: <1378755140-5555-1-git-send-email-dmalcolm@redhat.com> References: <20130820210104.GC16244@atrey.karlin.mff.cuni.cz> <1378755140-5555-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/ * ipa-ref.h (symtab_node): Remove typedef to pointer type, as it clashes with the preferred name for the base class. (const_symtab_node): Remove redundant typedef. --- gcc/ipa-ref.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/gcc/ipa-ref.h b/gcc/ipa-ref.h index dc6e238..d5ea7ee 100644 --- a/gcc/ipa-ref.h +++ b/gcc/ipa-ref.h @@ -21,8 +21,6 @@ along with GCC; see the file COPYING3. If not see struct cgraph_node; struct varpool_node; class symtab_node_base; -typedef symtab_node_base *symtab_node; -typedef const symtab_node_base *const_symtab_node; /* How the reference is done. */