From patchwork Fri Jan 13 21:31:11 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steven Bosscher X-Patchwork-Id: 135997 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]) by ozlabs.org (Postfix) with SMTP id 702A1B6EFF for ; Sat, 14 Jan 2012 08:31:28 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1327095089; h=Comment: DomainKey-Signature:Received:Received:Received:Received: MIME-Version:Received:Received:Date:Message-ID:Subject:From:To: Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:Sender:Delivered-To; bh=2+7qKll G+fwt5KMDG2JncDqf3Eg=; b=nQD3vbvCVmfifDlWP0tW5htziWRtkFxV6O82RN4 rank1qjymY1WE7suaUDIyjjOcbB3EADQkodoY1A0X/y3zgjfJWJBuNWMIecHMLX6 dK9IbvGV/JVY1nF3pvSenmDwTVa/iFLahQJ1VLRB1CBrNpmBTsjR0v8pqhvsixxv 9Ux8= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:MIME-Version:Received:Received:Date:Message-ID:Subject:From:To:Content-Type:X-IsSubscribed:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=c/JIZFlyICend1OM3ykT78axXUVL21CWB9BCSFsyX1rO0wgKZ0r42ezurr/DJf 6i3FPV6zINcTLw3geb6kEWoGSkUc3qDxx/CUpt7Bn4ywa9yO2HTiwM0C8uUPAs8L 6bxgOR6OpMi8kW1AgZqsURnXgqLYlaJ2gkrv+KA3t6Qvc=; Received: (qmail 11655 invoked by alias); 13 Jan 2012 21:31:25 -0000 Received: (qmail 11646 invoked by uid 22791); 13 Jan 2012 21:31:24 -0000 X-SWARE-Spam-Status: No, hits=-2.2 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from mail-yx0-f175.google.com (HELO mail-yx0-f175.google.com) (209.85.213.175) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 13 Jan 2012 21:31:12 +0000 Received: by yenr5 with SMTP id r5so483043yen.20 for ; Fri, 13 Jan 2012 13:31:11 -0800 (PST) MIME-Version: 1.0 Received: by 10.236.73.129 with SMTP id v1mr4473319yhd.129.1326490271474; Fri, 13 Jan 2012 13:31:11 -0800 (PST) Received: by 10.100.255.17 with HTTP; Fri, 13 Jan 2012 13:31:11 -0800 (PST) Date: Fri, 13 Jan 2012 22:31:11 +0100 Message-ID: Subject: [patch] Remove #include tree-mudflap.h from a few files From: Steven Bosscher To: GCC Patches X-IsSubscribed: yes 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 Hello, Nothing fancy, just remove an odd couple of #includes that are not necessary. OK for trunk? Ciao! Steven gcc/ * c-decl.c: Do not include tree-mudflap.h * tree-optimize.c: Likewise. cp/ * decl2.c: Do not include tree-mudflap.h * semantics.c: Likewise. gcc/ * c-decl.c: Do not include tree-mudflap.h * tree-optimize.c: Likewise. cp/ * decl2.c: Do not include tree-mudflap.h * semantics.c: Likewise. Index: c-decl.c =================================================================== --- c-decl.c (revision 183161) +++ c-decl.c (working copy) @@ -50,7 +50,6 @@ along with GCC; see the file COPYING3. #include "c-family/c-pragma.h" #include "c-lang.h" #include "langhooks.h" -#include "tree-mudflap.h" #include "tree-iterator.h" #include "diagnostic-core.h" #include "tree-dump.h" Index: tree-optimize.c =================================================================== --- tree-optimize.c (revision 183161) +++ tree-optimize.c (working copy) @@ -38,7 +38,6 @@ along with GCC; see the file COPYING3. #include "flags.h" #include "cgraph.h" #include "tree-inline.h" -#include "tree-mudflap.h" #include "tree-pass.h" #include "ggc.h" #include "cgraph.h" Index: cp/decl2.c =================================================================== --- cp/decl2.c (revision 183161) +++ cp/decl2.c (working copy) @@ -43,7 +43,6 @@ along with GCC; see the file COPYING3. #include "target.h" #include "c-family/c-common.h" #include "c-family/c-objc.h" -#include "tree-mudflap.h" #include "cgraph.h" #include "tree-inline.h" #include "c-family/c-pragma.h" Index: cp/semantics.c =================================================================== --- cp/semantics.c (revision 183161) +++ cp/semantics.c (working copy) @@ -33,7 +33,6 @@ along with GCC; see the file COPYING3. #include "c-family/c-common.h" #include "c-family/c-objc.h" #include "tree-inline.h" -#include "tree-mudflap.h" #include "intl.h" #include "toplev.h" #include "flags.h"