From patchwork Mon Aug 17 16:27:41 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aldy Hernandez X-Patchwork-Id: 508023 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 D2947140134 for ; Tue, 18 Aug 2015 02:27:51 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=nSBZBua7; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:to :from:subject:message-id:date:mime-version:content-type; q=dns; s=default; b=wcW90oHWSVfZy29VIJWz52mS2JSmC3UJ9IM1lUB6P2R0YOoEMo iLiCBseuz7X7qOf67B1FqUCrzWsbHSZAPwCbCPqPSNx8yvPuU30rWhgDda6thdMR VJUmG3v7PbrIeKQ4Y9OughpL91zr6bNAX8Ykw6EB7+uu6T6Z7Mu7GW+c0= 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:to :from:subject:message-id:date:mime-version:content-type; s= default; bh=cg7ceOlT0DLTcyYFedL72hMiooY=; b=nSBZBua7dv/g01B27hcC E0pe7AuOn6mc16DqukfFK1j+ujc9LnGOuICuXXw77oXvLbjpM127oQaemqXJyKoC Yi7ZSiH68CCfcS2Oidmx6/kTWmySuViKZmkx79D4j5BUrlAHhNeX+2tPverByqbd 3a0P0T6B7+scvAEUuHYnNL8= Received: (qmail 129959 invoked by alias); 17 Aug 2015 16:27:45 -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 129939 invoked by uid 89); 17 Aug 2015 16:27:44 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-5.7 required=5.0 tests=AWL, BAYES_00, KAM_LAZY_DOMAIN_SECURITY, RP_MATCHES_RCVD, SPF_HELO_PASS autolearn=no version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Mon, 17 Aug 2015 16:27:43 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (Postfix) with ESMTPS id CFAD28A4BC for ; Mon, 17 Aug 2015 16:27:42 +0000 (UTC) Received: from reynosa.quesejoda.com (vpn-60-49.rdu2.redhat.com [10.10.60.49]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t7HGRfLi011318 for ; Mon, 17 Aug 2015 12:27:42 -0400 To: gcc-patches From: Aldy Hernandez Subject: [committed] config/i386/i386.c: Remove fibheap.h. Message-ID: <55D20B7D.6090209@redhat.com> Date: Mon, 17 Aug 2015 09:27:41 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.1.0 MIME-Version: 1.0 There are no uses of this include file in the x86 backend. For that matter, apparently there are no uses of libiberty's fibheap implementation anywhere (well, at least in GCC, binutils, and gdb. I don't know if there are other users in the wild). FWIW, GCC has its own in C++. Approved by rth offline. Tested by building all-gcc (no bootstrap) on x86-64 Linux. Aldy commit 51a695246906459748d0114c75b2ad84f932f299 Author: Aldy Hernandez Date: Mon Aug 17 09:22:42 2015 -0700 * config/i386/i386.c: Remove include of fibheap.h. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 51eca52..05fa5e1 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -73,7 +73,6 @@ along with GCC; see the file COPYING3. If not see #include "cselib.h" #include "debug.h" #include "sched-int.h" -#include "fibheap.h" #include "opts.h" #include "diagnostic.h" #include "dumpfile.h"