From patchwork Fri Dec 23 06:06:59 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Frysinger X-Patchwork-Id: 62334 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 3A811383F084 for ; Fri, 23 Dec 2022 06:08:59 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 3A811383F084 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1671775739; bh=vJH4tsdbI/UuPflBolSOlv738DGbTln1sFI9PP025Rs=; 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=u7IQaj6rs/4BMZplaP4FupRmEsTe50oCXX+UyQfgiD6kMwmQjlEHnPBMGkjlg1MFX w7p7q2RsUiZmPPTsVT6iuOx09ibvqGH1M7JFoPuXAZU+7GVrQ9oyhYS1ZVGrBOJfkG dKi3SwbqfVzypJ8BN4qx9C/fEzEFnK20tkxAxSHY= X-Original-To: gdb-patches@sourceware.org Delivered-To: gdb-patches@sourceware.org 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 Received: by smtp.gentoo.org (Postfix, from userid 559) id 1BB673411D4; Fri, 23 Dec 2022 06:07:30 +0000 (UTC) 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 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 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: , X-Patchwork-Original-From: Mike Frysinger via Gdb-patches From: Mike Frysinger Reply-To: Mike Frysinger Errors-To: gdb-patches-bounces+patchwork=sourceware.org@sourceware.org Sender: "Gdb-patches" 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