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 78A433850F06 for ; Fri, 23 Dec 2022 06:07:30 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 78A433850F06 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 1BB673411D4; Fri, 23 Dec 2022 06:07:30 +0000 (UTC) From: Mike Frysinger To: gdb-patches@sourceware.org Subject: [PATCH 06/20] sim: ft32: move arch-specific settings to internal header Date: Fri, 23 Dec 2022 01:06:59 -0500 Message-Id: <20221223060713.28821-7-vapier@gentoo.org> X-Mailer: git-send-email 2.39.0 In-Reply-To: <20221223060713.28821-1-vapier@gentoo.org> References: <20221223060713.28821-1-vapier@gentoo.org> 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,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: There's no need for these settings to be in sim-main.h which is shared with common/ sim code, so drop the ft32-sim.h include and move it to the few files that actually need it. --- sim/ft32/interp.c | 2 ++ sim/ft32/sim-main.h | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sim/ft32/interp.c b/sim/ft32/interp.c index 9324475709e2..dfea4720c220 100644 --- a/sim/ft32/interp.c +++ b/sim/ft32/interp.c @@ -37,6 +37,8 @@ #include "opcode/ft32.h" +#include "ft32-sim.h" + /* * FT32 is a Harvard architecture: RAM and code occupy * different address spaces. diff --git a/sim/ft32/sim-main.h b/sim/ft32/sim-main.h index 5c84f9e2f219..4529d0187560 100644 --- a/sim/ft32/sim-main.h +++ b/sim/ft32/sim-main.h @@ -24,6 +24,4 @@ #include "sim-basics.h" #include "sim-base.h" -#include "ft32-sim.h" - #endif -- 2.39.0