From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id 8M6ZM1ObyWA5fwAAWB0awg (envelope-from ) for ; Wed, 16 Jun 2021 02:33:55 -0400 Received: by simark.ca (Postfix, from userid 112) id D10661F163; Wed, 16 Jun 2021 02:33:55 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 4BD371E813 for ; Wed, 16 Jun 2021 02:33:55 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 819643986819 for ; Wed, 16 Jun 2021 06:33:54 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 819643986819 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1623825234; bh=ja6+lUsNIatSnAs9cfcjdUt7BxcW2nZUWSOhACrNoGQ=; h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=XrIv6vrXiCwjJjNeA6iDpwsEC9xTAQG48MmD1n9DTmzFiEBl2DBF5/Wj9/Damenxq 4PyCkWwvNiyJpmEW66ploIFjA79m3T7loWB9xDJ/pObP+WtbAbQTU9qYv5bqQ34bGD XKsKLIXZkN3k0ILn2dFzeVLoGzKZ4Nv9FoDPFxFk= Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) by sourceware.org (Postfix) with ESMTP id 676B63938C27 for ; Wed, 16 Jun 2021 06:33:06 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 676B63938C27 Received: from vapier.lan (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id AD9D5340E51 for ; Wed, 16 Jun 2021 06:33:05 +0000 (UTC) To: gdb-patches@sourceware.org Subject: [PATCH 2/3] sim: drop core libiberty.h include Date: Wed, 16 Jun 2021 02:33:01 -0400 Message-Id: <20210616063302.20722-2-vapier@gentoo.org> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20210616063302.20722-1-vapier@gentoo.org> References: <20210616063302.20722-1-vapier@gentoo.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Mike Frysinger via Gdb-patches Reply-To: Mike Frysinger Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" This doesn't need to be included for every sim file, so drop it. Every C file that needs it seems to already include it. --- sim/common/sim-basics.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/sim/common/sim-basics.h b/sim/common/sim-basics.h index 13547422d3c3..a3dd5d93d584 100644 --- a/sim/common/sim-basics.h +++ b/sim/common/sim-basics.h @@ -125,8 +125,6 @@ typedef enum { #include "sim-utils.h" -#include "libiberty.h" - /* Note: Only the simpler interfaces are defined here. More heavy weight objects, such as core and events, are defined in the more serious sim-base.h header. */ -- 2.31.1