From patchwork Mon Jan 1 19:52:28 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Frysinger X-Patchwork-Id: 83076 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 399D83858421 for ; Mon, 1 Jan 2024 19:53:01 +0000 (GMT) X-Original-To: gdb-patches@sourceware.org Delivered-To: gdb-patches@sourceware.org Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) by sourceware.org (Postfix) with ESMTP id 8AA9A3858D1E for ; Mon, 1 Jan 2024 19:52:32 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 8AA9A3858D1E Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gentoo.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gentoo.org ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 8AA9A3858D1E Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=2001:470:ea4a:1:5054:ff:fec7:86e4 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1704138759; cv=none; b=I/o6WNYExUzk7gzpFTqVzbqrjyr38F2AGiE5KHd0iqxR9h0GdqUlqB4ifXMRayLZURtjEy761WV09ALO+aFG/t3pk14pD73BQ9QmXJ5K2dfuhh6yEmRCnHBgUFEvCjhgUlZcKvN+aeHAAX8CnZxNI2CsmO7pfxkqmQkWnRooxpY= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1704138759; c=relaxed/simple; bh=kjG4WA/lWUjUFg92M9oYAYwua37tHIj9Lc5Kfh8mBN8=; h=From:To:Subject:Date:Message-ID:MIME-Version; b=SWPP1+ahTC7H9ZD9t5CNwnf6WdoJGZX+/4BozQ+fGi59lhNXI06Z4s6ngjrYbeuopj0fHPBJpMLPBxdotmDXD0EkPGzzUxuhlWAyOGfQIRI16UkeIfBXU2juRgMFUvhtWc0nvK4nxDZfOgIfeWSe/x9OEfVzNk/eujSycMnopRA= ARC-Authentication-Results: i=1; server2.sourceware.org Received: by smtp.gentoo.org (Postfix, from userid 559) id 0359E33FE49; Mon, 1 Jan 2024 19:52:32 +0000 (UTC) From: Mike Frysinger To: gdb-patches@sourceware.org Subject: [PATCH/committed] sim: ppc: drop unused host bitsize settings Date: Mon, 1 Jan 2024 14:52:28 -0500 Message-ID: <20240101195228.24289-1-vapier@gentoo.org> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 X-Spam-Status: No, score=-11.3 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, SPF_HELO_PASS, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: gdb-patches-bounces+patchwork=sourceware.org@sourceware.org This is never set anywhere, so it's always empty. Scrub it. --- sim/ppc/Makefile.in | 2 -- sim/ppc/configure | 2 -- sim/ppc/configure.ac | 1 - 3 files changed, 5 deletions(-) diff --git a/sim/ppc/Makefile.in b/sim/ppc/Makefile.in index f76c66254c07..48adacc0971a 100644 --- a/sim/ppc/Makefile.in +++ b/sim/ppc/Makefile.in @@ -64,7 +64,6 @@ INLINE_CFLAGS = $(SIM_INLINE) SMP_CFLAGS = @sim_smp@ XOR_ENDIAN_CFLAGS = @sim_xor_endian@ BITSIZE_CFLAGS = @sim_bitsize@ -HOSTBITSIZE_CFLAGS = @sim_hostbitsize@ TIMEBASE_CFLAGS = @sim_timebase@ FLOAT_CFLAGS = @sim_float@ MONITOR_CFLAGS = @sim_monitor@ @@ -75,7 +74,6 @@ CONFIG_CFLAGS = \ $(SMP_CFLAGS) \ $(XOR_ENDIAN_CFLAGS) \ $(BITSIZE_CFLAGS) \ - $(HOSTBITSIZE_CFLAGS) \ $(TIMEBASE_CFLAGS) \ $(FLOAT_CFLAGS) \ $(MONITOR_CFLAGS) \ diff --git a/sim/ppc/configure.ac b/sim/ppc/configure.ac index 5260fa0ba7af..290cdd15b819 100644 --- a/sim/ppc/configure.ac +++ b/sim/ppc/configure.ac @@ -525,7 +525,6 @@ AC_SUBST(sim_xor_endian) AC_SUBST(sim_smp) AC_SUBST(sim_igen_smp) AC_SUBST(sim_bitsize) -AC_SUBST(sim_hostbitsize) AC_SUBST(sim_timebase) AC_SUBST(sim_float) AC_SUBST(sim_monitor)