From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) by sourceware.org (Postfix) with ESMTP id BCDA53858D1E for ; Sun, 1 Jan 2023 19:09:36 +0000 (GMT) Received: by smtp.gentoo.org (Postfix, from userid 559) id AC5B7340CBB; Sun, 1 Jan 2023 19:09:35 +0000 (UTC) From: Mike Frysinger To: gdb-patches@sourceware.org Subject: [PATCH] sim: iq2000: drop unused cpu define logic Date: Sun, 1 Jan 2023 14:09:31 -0500 Message-Id: <20230101190931.24961-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.2 required=5.0 tests=BAYES_00,GIT_PATCH_0,JMQ_SPF_NEUTRAL,KAM_DMARC_STATUS,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,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: These defines seem to have been added in anticipation of adding another cpu port (IQ10BF?), but that was over 20 years ago, and that port has yet to materialize. So drop these compile flags since they don't do anything to the generated code. If another port ever shows up, it's easy enough to readd things as needed. --- sim/iq2000/Makefile.in | 6 ------ 1 file changed, 6 deletions(-) diff --git a/sim/iq2000/Makefile.in b/sim/iq2000/Makefile.in index 5f81be5c5b41..ca03dfa78255 100644 --- a/sim/iq2000/Makefile.in +++ b/sim/iq2000/Makefile.in @@ -26,18 +26,12 @@ SIM_OBJS = \ sim-if.o arch.o \ $(IQ2000_OBJS) -ALL_CPU_CFLAGS = -DHAVE_CPU_IQ2000BF -DHAVE_CPU_IQ10BF - SIM_EXTRA_CLEAN = iq2000-clean ## COMMON_POST_CONFIG_FRAG arch = iq2000 -arch.o: arch.c - $(COMPILE) -UHAVE_CPU_IQ10BF $(srcdir)/arch.c - $(POSTCOMPILE) - # IQ2000 objs iq2000-clean: -- 2.39.0