From patchwork Sun Nov 15 07:44:11 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Frysinger X-Patchwork-Id: 9666 X-Patchwork-Delegate: vapier@gentoo.org Received: (qmail 90497 invoked by alias); 15 Nov 2015 07:44:16 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 90480 invoked by uid 89); 15 Nov 2015 07:44:15 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=0.6 required=5.0 tests=AWL, BAYES_50, RP_MATCHES_RCVD, SPF_PASS, UNWANTED_LANGUAGE_BODY autolearn=ham version=3.3.2 X-HELO: smtp.gentoo.org Received: from smtp.gentoo.org (HELO smtp.gentoo.org) (140.211.166.183) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Sun, 15 Nov 2015 07:44:14 +0000 Received: from localhost.localdomain (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id 68CBF3405BB for ; Sun, 15 Nov 2015 07:44:12 +0000 (UTC) From: Mike Frysinger To: gdb-patches@sourceware.org Subject: [PATCH] sim: clean up redundant objects Date: Sun, 15 Nov 2015 02:44:11 -0500 Message-Id: <1447573451-30353-1-git-send-email-vapier@gentoo.org> X-IsSubscribed: yes Some of the target makefiles listed objects that were already pulled in via SIM_NEW_COMMON_OBJS. Clean those up. Committed. --- sim/ft32/ChangeLog | 5 +++++ sim/ft32/Makefile.in | 17 +---------------- sim/h8300/ChangeLog | 4 ++++ sim/h8300/Makefile.in | 3 +-- sim/lm32/ChangeLog | 4 ++++ sim/lm32/Makefile.in | 1 - sim/m68hc11/ChangeLog | 4 ++++ sim/m68hc11/Makefile.in | 1 - 8 files changed, 19 insertions(+), 20 deletions(-) diff --git a/sim/ft32/ChangeLog b/sim/ft32/ChangeLog index bb41fb8..00ddbdd 100644 --- a/sim/ft32/ChangeLog +++ b/sim/ft32/ChangeLog @@ -1,5 +1,10 @@ 2015-11-14 Mike Frysinger + * Makefile.in (SIM_OBJS): Delete objects listed in + SIM_NEW_COMMON_OBJS. + +2015-11-14 Mike Frysinger + * interp.c (sim_close): Delete. 2015-09-29 James Bowman diff --git a/sim/ft32/Makefile.in b/sim/ft32/Makefile.in index 69bf060..13dcfcb 100644 --- a/sim/ft32/Makefile.in +++ b/sim/ft32/Makefile.in @@ -21,25 +21,10 @@ SIM_OBJS = \ $(SIM_NEW_COMMON_OBJS) \ interp.o \ - sim-bits.o \ - sim-config.o \ - sim-core.o \ - sim-endian.o \ - sim-events.o \ - sim-fpu.o \ sim-hload.o \ - sim-io.o \ - sim-load.o \ - sim-memopt.o \ - sim-module.o \ - sim-options.o \ - sim-profile.o \ sim-reason.o \ sim-reg.o \ sim-resume.o \ - sim-signal.o \ - sim-stop.o \ - sim-trace.o \ - sim-utils.o + sim-stop.o ## COMMON_POST_CONFIG_FRAG diff --git a/sim/h8300/ChangeLog b/sim/h8300/ChangeLog index b50c1a1..2a12f28 100644 --- a/sim/h8300/ChangeLog +++ b/sim/h8300/ChangeLog @@ -1,5 +1,9 @@ 2015-11-14 Mike Frysinger + * Makefile.in (SIM_OBJS): Delete sim-load.o. + +2015-11-14 Mike Frysinger + * compile.c (sim_close): Delete. 2015-11-09 Mike Frysinger diff --git a/sim/h8300/Makefile.in b/sim/h8300/Makefile.in index da68255..c8e2ac7 100644 --- a/sim/h8300/Makefile.in +++ b/sim/h8300/Makefile.in @@ -18,8 +18,7 @@ ## COMMON_PRE_CONFIG_FRAG SIM_OBJS = compile.o \ - $(SIM_NEW_COMMON_OBJS) \ - sim-load.o + $(SIM_NEW_COMMON_OBJS) ## COMMON_POST_CONFIG_FRAG diff --git a/sim/lm32/ChangeLog b/sim/lm32/ChangeLog index 59d3aa1..e55d42f 100644 --- a/sim/lm32/ChangeLog +++ b/sim/lm32/ChangeLog @@ -1,5 +1,9 @@ 2015-11-14 Mike Frysinger + * Makefile.in (SIM_OBJS): Delete sim-signal.o. + +2015-11-14 Mike Frysinger + * sim-if.c (sim_close): Delete. 2015-06-23 Mike Frysinger diff --git a/sim/lm32/Makefile.in b/sim/lm32/Makefile.in index 8bbe014..64e7483 100644 --- a/sim/lm32/Makefile.in +++ b/sim/lm32/Makefile.in @@ -9,7 +9,6 @@ SIM_OBJS = \ sim-hload.o \ sim-model.o \ sim-reg.o \ - sim-signal.o \ cgen-utils.o cgen-trace.o cgen-scache.o \ cgen-run.o sim-reason.o sim-stop.o \ sim-if.o arch.o \ diff --git a/sim/m68hc11/ChangeLog b/sim/m68hc11/ChangeLog index ba2db62..ba8df96 100644 --- a/sim/m68hc11/ChangeLog +++ b/sim/m68hc11/ChangeLog @@ -1,5 +1,9 @@ 2015-11-14 Mike Frysinger + * Makefile.in (SIM_OBJS): Delete sim-load.o. + +2015-11-14 Mike Frysinger + * interp.c (sim_close): Delete. 2015-06-23 Mike Frysinger diff --git a/sim/m68hc11/Makefile.in b/sim/m68hc11/Makefile.in index 98b811a..f1c8048 100644 --- a/sim/m68hc11/Makefile.in +++ b/sim/m68hc11/Makefile.in @@ -22,7 +22,6 @@ M68HC11_OBJS = interp.o m68hc11int.o m68hc12int.o \ SIM_OBJS = $(M68HC11_OBJS) \ $(SIM_NEW_COMMON_OBJS) \ - sim-load.o \ sim-hload.o \ sim-stop.o \ sim-reason.o \