From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) by sourceware.org (Postfix) with ESMTP id 426843858D1E for ; Fri, 23 Dec 2022 01:10:10 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 426843858D1E Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gentoo.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gentoo.org Received: by smtp.gentoo.org (Postfix, from userid 559) id B4D8534138B; Fri, 23 Dec 2022 01:10:09 +0000 (UTC) From: Mike Frysinger To: gdb-patches@sourceware.org Subject: [PATCH] sim: drop unused SIM_ADDR type [PR sim/7504] Date: Thu, 22 Dec 2022 20:10:06 -0500 Message-Id: <20221223011006.17469-1-vapier@gentoo.org> X-Mailer: git-send-email 2.39.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.1 required=5.0 tests=BAYES_00,GIT_PATCH_0,JMQ_SPF_NEUTRAL,KAM_DMARC_STATUS,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Now that sim APIs either use 64-bit addresses all the time, or more appropriate target-specific types, drop this now-unused 32-bit-only address type. Bug: https://sourceware.org/PR7504 --- include/sim/sim.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/sim/sim.h b/include/sim/sim.h index 468a63bbc201..6243bd49a123 100644 --- a/include/sim/sim.h +++ b/include/sim/sim.h @@ -26,12 +26,6 @@ extern "C" { #endif -/* This file is used when building stand-alone simulators, so isolate this - file from gdb. */ - -typedef unsigned int SIM_ADDR; - - /* Semi-opaque type used as result of sim_open and passed back to all other routines. "desc" is short for "descriptor". It is up to each simulator to define `sim_state'. */ -- 2.39.0