From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 35577 invoked by alias); 9 Apr 2015 06:42:29 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 35563 invoked by uid 89); 9 Apr 2015 06:42:28 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-ob0-f175.google.com Received: from mail-ob0-f175.google.com (HELO mail-ob0-f175.google.com) (209.85.214.175) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Thu, 09 Apr 2015 06:42:25 +0000 Received: by oblw8 with SMTP id w8so119140370obl.0 for ; Wed, 08 Apr 2015 23:42:23 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.183.24.168 with SMTP id ij8mr37375597obd.15.1428561743799; Wed, 08 Apr 2015 23:42:23 -0700 (PDT) Received: by 10.76.178.170 with HTTP; Wed, 8 Apr 2015 23:42:23 -0700 (PDT) In-Reply-To: <1428379033-5475-1-git-send-email-vapier@gentoo.org> References: <1428379033-5475-1-git-send-email-vapier@gentoo.org> Date: Thu, 09 Apr 2015 06:42:00 -0000 Message-ID: Subject: Re: [PATCH] sim: move sim-engine.o/sim-hrw.o to the common list From: "Bin.Cheng" To: Mike Frysinger Cc: "gdb-patches@sourceware.org" Content-Type: text/plain; charset=ISO-8859-1 X-IsSubscribed: yes X-SW-Source: 2015-04/txt/msg00311.txt.bz2 On Tue, Apr 7, 2015 at 11:57 AM, Mike Frysinger wrote: > This makes these two objects available to all sims by default. Some targets define their own version sim_read/sim_write in different target dependent files, simply adding sim-hrw in common makefile would break those targets. Seems reasonable to revert sim-hrw part of this patch? Thanks, bin > > Committed. > --- > sim/arm/ChangeLog | 4 ++++ > sim/arm/Makefile.in | 1 - > sim/avr/ChangeLog | 4 ++++ > sim/avr/Makefile.in | 2 -- > sim/bfin/ChangeLog | 4 ++++ > sim/bfin/Makefile.in | 2 -- > sim/common/ChangeLog | 4 ++++ > sim/common/Make-common.in | 2 ++ > sim/cr16/ChangeLog | 4 ++++ > sim/cr16/Makefile.in | 1 - > sim/cris/ChangeLog | 4 ++++ > sim/cris/Makefile.in | 3 +-- > sim/d10v/ChangeLog | 4 ++++ > sim/d10v/Makefile.in | 1 - > sim/frv/ChangeLog | 4 ++++ > sim/frv/Makefile.in | 3 +-- > sim/ft32/ChangeLog | 4 ++++ > sim/ft32/Makefile.in | 1 - > sim/h8300/ChangeLog | 4 ++++ > sim/h8300/Makefile.in | 1 - > sim/iq2000/ChangeLog | 4 ++++ > sim/iq2000/Makefile.in | 3 +-- > sim/lm32/ChangeLog | 4 ++++ > sim/lm32/Makefile.in | 3 +-- > sim/m32r/ChangeLog | 4 ++++ > sim/m32r/Makefile.in | 3 +-- > sim/m68hc11/ChangeLog | 4 ++++ > sim/m68hc11/Makefile.in | 2 -- > sim/mcore/ChangeLog | 4 ++++ > sim/mcore/Makefile.in | 1 - > sim/microblaze/ChangeLog | 4 ++++ > sim/microblaze/Makefile.in | 1 - > sim/mips/ChangeLog | 4 ++++ > sim/mips/Makefile.in | 1 - > sim/mn10300/ChangeLog | 4 ++++ > sim/mn10300/Makefile.in | 2 -- > sim/moxie/ChangeLog | 4 ++++ > sim/moxie/Makefile.in | 2 -- > sim/msp430/ChangeLog | 4 ++++ > sim/msp430/Makefile.in | 2 -- > sim/sh/ChangeLog | 4 ++++ > sim/sh/Makefile.in | 1 - > sim/sh64/ChangeLog | 4 ++++ > sim/sh64/Makefile.in | 3 +-- > sim/v850/ChangeLog | 4 ++++ > sim/v850/Makefile.in | 2 -- > 46 files changed, 100 insertions(+), 35 deletions(-) > > diff --git a/sim/arm/ChangeLog b/sim/arm/ChangeLog > index 1cd5df6..88d6c7a 100644 > --- a/sim/arm/ChangeLog > +++ b/sim/arm/ChangeLog > @@ -1,3 +1,7 @@ > +2015-04-06 Mike Frysinger > + > + * Makefile.in (SIM_OBJS): Delete sim-engine.o. > + > 2015-04-01 Mike Frysinger > > * Makefile.in (armos.o, armcopro.o, maverick.o, iwmmxt.o, arminit.o, > diff --git a/sim/arm/Makefile.in b/sim/arm/Makefile.in > index aad18fb..00c9bdf 100644 > --- a/sim/arm/Makefile.in > +++ b/sim/arm/Makefile.in > @@ -22,7 +22,6 @@ SIM_EXTRA_CFLAGS = -DMODET > SIM_OBJS = \ > $(SIM_NEW_COMMON_OBJS) \ > sim-cpu.o \ > - sim-engine.o \ > sim-hload.o \ > armemu26.o armemu32.o arminit.o armos.o armsupp.o \ > armvirt.o bag.o thumbemu.o wrapper.o \ > diff --git a/sim/avr/ChangeLog b/sim/avr/ChangeLog > index 186cea3..840ec0b 100644 > --- a/sim/avr/ChangeLog > +++ b/sim/avr/ChangeLog > @@ -1,3 +1,7 @@ > +2015-04-06 Mike Frysinger > + > + * Makefile.in (SIM_OBJS): Delete sim-engine.o and sim-hrw.o. > + > 2015-04-01 Mike Frysinger > > * tconfig.h: Delete. > diff --git a/sim/avr/Makefile.in b/sim/avr/Makefile.in > index 880b118..d7b77d0 100644 > --- a/sim/avr/Makefile.in > +++ b/sim/avr/Makefile.in > @@ -20,9 +20,7 @@ SIM_OBJS = \ > $(SIM_NEW_COMMON_OBJS) \ > interp.o \ > sim-cpu.o \ > - sim-engine.o \ > sim-hload.o \ > - sim-hrw.o \ > sim-reason.o \ > sim-resume.o \ > sim-stop.o > diff --git a/sim/bfin/ChangeLog b/sim/bfin/ChangeLog > index 2168726..7410729 100644 > --- a/sim/bfin/ChangeLog > +++ b/sim/bfin/ChangeLog > @@ -1,3 +1,7 @@ > +2015-04-06 Mike Frysinger > + > + * Makefile.in (SIM_OBJS): Delete sim-engine.o and sim-hrw.o. > + > 2015-04-01 Mike Frysinger > > * Makefile.in (SIM_OBJS): Delete $(SIM_EXTRA_OBJS). > diff --git a/sim/bfin/Makefile.in b/sim/bfin/Makefile.in > index 10178d1..38531a9 100644 > --- a/sim/bfin/Makefile.in > +++ b/sim/bfin/Makefile.in > @@ -28,9 +28,7 @@ SIM_OBJS = \ > interp.o \ > machs.o \ > sim-cpu.o \ > - sim-engine.o \ > sim-hload.o \ > - sim-hrw.o \ > sim-model.o \ > sim-reason.o \ > sim-reg.o \ > diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog > index 559545e..bf7807c 100644 > --- a/sim/common/ChangeLog > +++ b/sim/common/ChangeLog > @@ -1,3 +1,7 @@ > +2015-04-06 Mike Frysinger > + > + * Make-common.in (SIM_NEW_COMMON_OBJS): Add sim-engine.o and sim-hrw.o. > + > 2015-04-01 Mike Frysinger > > * run-sim.h, run.c: Delete. > diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in > index 0b1f85a..50db255 100644 > --- a/sim/common/Make-common.in > +++ b/sim/common/Make-common.in > @@ -177,8 +177,10 @@ SIM_NEW_COMMON_OBJS = \ > sim-config.o \ > sim-core.o \ > sim-endian.o \ > + sim-engine.o \ > sim-events.o \ > sim-fpu.o \ > + sim-hrw.o \ > sim-io.o \ > sim-info.o \ > sim-load.o \ > diff --git a/sim/cr16/ChangeLog b/sim/cr16/ChangeLog > index 55355c4..6e2d58c 100644 > --- a/sim/cr16/ChangeLog > +++ b/sim/cr16/ChangeLog > @@ -1,3 +1,7 @@ > +2015-04-06 Mike Frysinger > + > + * Makefile.in (SIM_OBJS): Delete sim-engine.o. > + > 2015-04-01 Mike Frysinger > > * interp.c (sim_set_profile, sim_set_profile_size): Delete. > diff --git a/sim/cr16/Makefile.in b/sim/cr16/Makefile.in > index 04aaca4..3918ced 100644 > --- a/sim/cr16/Makefile.in > +++ b/sim/cr16/Makefile.in > @@ -20,7 +20,6 @@ > SIM_OBJS = \ > $(SIM_NEW_COMMON_OBJS) \ > sim-cpu.o \ > - sim-engine.o \ > sim-hload.o \ > interp.o \ > table.o \ > diff --git a/sim/cris/ChangeLog b/sim/cris/ChangeLog > index 26e9752..0c56cb9 100644 > --- a/sim/cris/ChangeLog > +++ b/sim/cris/ChangeLog > @@ -1,3 +1,7 @@ > +2015-04-06 Mike Frysinger > + > + * Makefile.in (SIM_OBJS): Delete sim-engine.o and sim-hrw.o. > + > 2015-03-31 Mike Frysinger > > * config.in, configure: Regenerate. > diff --git a/sim/cris/Makefile.in b/sim/cris/Makefile.in > index 0b44401..5459c0e 100644 > --- a/sim/cris/Makefile.in > +++ b/sim/cris/Makefile.in > @@ -25,11 +25,10 @@ CRISV32F_OBJS = crisv32f.o cpuv32.o decodev32.o modelv32.o mloopv32f.o > SIM_OBJS = \ > $(SIM_NEW_COMMON_OBJS) \ > sim-cpu.o \ > - sim-hrw.o \ > sim-model.o \ > sim-reg.o \ > cgen-utils.o cgen-trace.o cgen-scache.o \ > - cgen-run.o sim-reason.o sim-engine.o sim-stop.o \ > + cgen-run.o sim-reason.o sim-stop.o \ > sim-if.o arch.o \ > $(CRISV10F_OBJS) \ > $(CRISV32F_OBJS) \ > diff --git a/sim/d10v/ChangeLog b/sim/d10v/ChangeLog > index e09a14f..418f6ce 100644 > --- a/sim/d10v/ChangeLog > +++ b/sim/d10v/ChangeLog > @@ -1,3 +1,7 @@ > +2015-04-06 Mike Frysinger > + > + * Makefile.in (SIM_OBJS): Delete sim-engine.o. > + > 2015-04-02 Mike Frysinger > > * interp.c (lookup_hash): Change SIGILL to GDB_SIGNAL_ILL. > diff --git a/sim/d10v/Makefile.in b/sim/d10v/Makefile.in > index faa1286..167e76b 100644 > --- a/sim/d10v/Makefile.in > +++ b/sim/d10v/Makefile.in > @@ -21,7 +21,6 @@ SIM_OBJS = \ > interp.o \ > $(SIM_NEW_COMMON_OBJS) \ > sim-cpu.o \ > - sim-engine.o \ > sim-hload.o \ > table.o \ > simops.o \ > diff --git a/sim/frv/ChangeLog b/sim/frv/ChangeLog > index 2b5e74c..92e0dcb 100644 > --- a/sim/frv/ChangeLog > +++ b/sim/frv/ChangeLog > @@ -1,3 +1,7 @@ > +2015-04-06 Mike Frysinger > + > + * Makefile.in (SIM_OBJS): Delete sim-engine.o and sim-hrw.o. > + > 2015-03-31 Mike Frysinger > > * config.in, configure: Regenerate. > diff --git a/sim/frv/Makefile.in b/sim/frv/Makefile.in > index 2c1503b..415d2ab 100644 > --- a/sim/frv/Makefile.in > +++ b/sim/frv/Makefile.in > @@ -23,11 +23,10 @@ SIM_OBJS = \ > $(SIM_NEW_COMMON_OBJS) \ > sim-cpu.o \ > sim-hload.o \ > - sim-hrw.o \ > sim-model.o \ > sim-reg.o \ > cgen-utils.o cgen-trace.o cgen-scache.o cgen-fpu.o cgen-accfp.o \ > - cgen-run.o sim-reason.o sim-engine.o sim-stop.o \ > + cgen-run.o sim-reason.o sim-stop.o \ > sim-if.o arch.o \ > $(FRV_OBJS) \ > traps.o interrupts.o memory.o cache.o pipeline.o \ > diff --git a/sim/ft32/ChangeLog b/sim/ft32/ChangeLog > index d74e390..ddf2bfa 100644 > --- a/sim/ft32/ChangeLog > +++ b/sim/ft32/ChangeLog > @@ -1,3 +1,7 @@ > +2015-04-06 Mike Frysinger > + > + * Makefile.in (SIM_OBJS): Delete sim-engine.o. > + > 2015-04-01 Mike Frysinger > > * Makefile.in (SIM_OBJS): Delete $(SIM_EXTRA_OBJS). > diff --git a/sim/ft32/Makefile.in b/sim/ft32/Makefile.in > index e8c9bb5..c124bf3 100644 > --- a/sim/ft32/Makefile.in > +++ b/sim/ft32/Makefile.in > @@ -26,7 +26,6 @@ SIM_OBJS = \ > sim-core.o \ > sim-cpu.o \ > sim-endian.o \ > - sim-engine.o \ > sim-events.o \ > sim-fpu.o \ > sim-hload.o \ > diff --git a/sim/h8300/ChangeLog b/sim/h8300/ChangeLog > index 641f72d..c0be32d 100644 > --- a/sim/h8300/ChangeLog > +++ b/sim/h8300/ChangeLog > @@ -1,3 +1,7 @@ > +2015-04-06 Mike Frysinger > + > + * Makefile.in (SIM_OBJS): Delete sim-engine.o. > + > 2015-04-01 Mike Frysinger > > * Makefile.in (SIM_OBJS): Delete $(SIM_EXTRA_OBJS). > diff --git a/sim/h8300/Makefile.in b/sim/h8300/Makefile.in > index 8893f80..9b89aea 100644 > --- a/sim/h8300/Makefile.in > +++ b/sim/h8300/Makefile.in > @@ -20,7 +20,6 @@ > SIM_OBJS = compile.o \ > $(SIM_NEW_COMMON_OBJS) \ > sim-cpu.o \ > - sim-engine.o \ > sim-load.o > > ## COMMON_POST_CONFIG_FRAG > diff --git a/sim/iq2000/ChangeLog b/sim/iq2000/ChangeLog > index 76d20c2..bc95baf 100644 > --- a/sim/iq2000/ChangeLog > +++ b/sim/iq2000/ChangeLog > @@ -1,3 +1,7 @@ > +2015-04-06 Mike Frysinger > + > + * Makefile.in (SIM_OBJS): Delete sim-engine.o and sim-hrw.o. > + > 2015-03-31 Mike Frysinger > > * config.in, configure: Regenerate. > diff --git a/sim/iq2000/Makefile.in b/sim/iq2000/Makefile.in > index 8068e60..3e07c53 100644 > --- a/sim/iq2000/Makefile.in > +++ b/sim/iq2000/Makefile.in > @@ -23,11 +23,10 @@ SIM_OBJS = \ > $(SIM_NEW_COMMON_OBJS) \ > sim-cpu.o \ > sim-hload.o \ > - sim-hrw.o \ > sim-model.o \ > sim-reg.o \ > cgen-utils.o cgen-trace.o cgen-scache.o \ > - cgen-run.o sim-reason.o sim-engine.o sim-stop.o \ > + cgen-run.o sim-reason.o sim-stop.o \ > sim-if.o arch.o \ > $(IQ2000_OBJS) > > diff --git a/sim/lm32/ChangeLog b/sim/lm32/ChangeLog > index e777204..31e621f 100644 > --- a/sim/lm32/ChangeLog > +++ b/sim/lm32/ChangeLog > @@ -1,3 +1,7 @@ > +2015-04-06 Mike Frysinger > + > + * Makefile.in (SIM_OBJS): Delete sim-engine.o and sim-hrw.o. > + > 2015-03-31 Mike Frysinger > > * config.in, configure: Regenerate. > diff --git a/sim/lm32/Makefile.in b/sim/lm32/Makefile.in > index 60420a1..ea2dd2d 100644 > --- a/sim/lm32/Makefile.in > +++ b/sim/lm32/Makefile.in > @@ -8,12 +8,11 @@ SIM_OBJS = \ > $(SIM_NEW_COMMON_OBJS) \ > sim-cpu.o \ > sim-hload.o \ > - sim-hrw.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-engine.o sim-stop.o \ > + cgen-run.o sim-reason.o sim-stop.o \ > sim-if.o arch.o \ > cpu.o decode.o sem.o model.o mloop.o \ > lm32.o traps.o user.o > diff --git a/sim/m32r/ChangeLog b/sim/m32r/ChangeLog > index 5e0615d..e7d332f 100644 > --- a/sim/m32r/ChangeLog > +++ b/sim/m32r/ChangeLog > @@ -1,3 +1,7 @@ > +2015-04-06 Mike Frysinger > + > + * Makefile.in (SIM_OBJS): Delete sim-engine.o and sim-hrw.o. > + > 2015-03-31 Mike Frysinger > > * config.in, configure: Regenerate. > diff --git a/sim/m32r/Makefile.in b/sim/m32r/Makefile.in > index 491affd..8f134f3 100644 > --- a/sim/m32r/Makefile.in > +++ b/sim/m32r/Makefile.in > @@ -28,11 +28,10 @@ SIM_OBJS = \ > $(SIM_NEW_COMMON_OBJS) \ > sim-cpu.o \ > sim-hload.o \ > - sim-hrw.o \ > sim-model.o \ > sim-reg.o \ > cgen-utils.o cgen-trace.o cgen-scache.o \ > - cgen-run.o sim-reason.o sim-engine.o sim-stop.o \ > + cgen-run.o sim-reason.o sim-stop.o \ > sim-if.o arch.o \ > $(M32R_OBJS) \ > $(M32RX_OBJS) \ > diff --git a/sim/m68hc11/ChangeLog b/sim/m68hc11/ChangeLog > index b06c3e3..36190a2 100644 > --- a/sim/m68hc11/ChangeLog > +++ b/sim/m68hc11/ChangeLog > @@ -1,3 +1,7 @@ > +2015-04-06 Mike Frysinger > + > + * Makefile.in (SIM_OBJS): Delete sim-engine.o and sim-hrw.o. > + > 2015-03-31 Mike Frysinger > > * m68hc11_sim.c (cpu_get_indexed_operand_addr, > diff --git a/sim/m68hc11/Makefile.in b/sim/m68hc11/Makefile.in > index a4a74c2..9b931a1 100644 > --- a/sim/m68hc11/Makefile.in > +++ b/sim/m68hc11/Makefile.in > @@ -24,9 +24,7 @@ SIM_OBJS = $(M68HC11_OBJS) \ > $(SIM_NEW_COMMON_OBJS) \ > sim-load.o \ > sim-hload.o \ > - sim-engine.o \ > sim-stop.o \ > - sim-hrw.o \ > sim-reason.o > > SIM_PROFILE= -DPROFILE=1 -DWITH_PROFILE=-1 > diff --git a/sim/mcore/ChangeLog b/sim/mcore/ChangeLog > index 73279fb..cd32d7a 100644 > --- a/sim/mcore/ChangeLog > +++ b/sim/mcore/ChangeLog > @@ -1,3 +1,7 @@ > +2015-04-06 Mike Frysinger > + > + * Makefile.in (SIM_OBJS): Delete sim-engine.o. > + > 2015-03-31 Mike Frysinger > > * config.in, configure: Regenerate. > diff --git a/sim/mcore/Makefile.in b/sim/mcore/Makefile.in > index 82e6e68..a54c92c 100644 > --- a/sim/mcore/Makefile.in > +++ b/sim/mcore/Makefile.in > @@ -21,7 +21,6 @@ SIM_OBJS = \ > interp.o \ > $(SIM_NEW_COMMON_OBJS) \ > sim-cpu.o \ > - sim-engine.o \ > sim-hload.o \ > sim-stop.o > > diff --git a/sim/microblaze/ChangeLog b/sim/microblaze/ChangeLog > index 166262c..5120267 100644 > --- a/sim/microblaze/ChangeLog > +++ b/sim/microblaze/ChangeLog > @@ -1,3 +1,7 @@ > +2015-04-06 Mike Frysinger > + > + * Makefile.in (SIM_OBJS): Delete sim-engine.o. > + > 2015-03-31 Mike Frysinger > > * config.in, configure: Regenerate. > diff --git a/sim/microblaze/Makefile.in b/sim/microblaze/Makefile.in > index ca31766..0085948 100644 > --- a/sim/microblaze/Makefile.in > +++ b/sim/microblaze/Makefile.in > @@ -21,7 +21,6 @@ SIM_OBJS = \ > interp.o \ > $(SIM_NEW_COMMON_OBJS) \ > sim-cpu.o \ > - sim-engine.o \ > sim-hload.o \ > sim-reason.o \ > sim-stop.o > diff --git a/sim/mips/ChangeLog b/sim/mips/ChangeLog > index a22a19e..477c8c8 100644 > --- a/sim/mips/ChangeLog > +++ b/sim/mips/ChangeLog > @@ -1,3 +1,7 @@ > +2015-04-06 Mike Frysinger > + > + * Makefile.in (SIM_OBJS): Delete sim-engine.o. > + > 2015-04-01 Mike Frysinger > > * tconfig.h (SIM_HAVE_PROFILE): Delete. > diff --git a/sim/mips/Makefile.in b/sim/mips/Makefile.in > index b9151eb..2016db3 100644 > --- a/sim/mips/Makefile.in > +++ b/sim/mips/Makefile.in > @@ -48,7 +48,6 @@ SIM_OBJS = \ > dsp.o \ > sim-main.o \ > sim-hload.o \ > - sim-engine.o \ > sim-stop.o \ > sim-resume.o \ > sim-reason.o \ > diff --git a/sim/mn10300/ChangeLog b/sim/mn10300/ChangeLog > index 838bdac..c4c12a2 100644 > --- a/sim/mn10300/ChangeLog > +++ b/sim/mn10300/ChangeLog > @@ -1,3 +1,7 @@ > +2015-04-06 Mike Frysinger > + > + * Makefile.in (SIM_OBJS): Delete sim-engine.o and sim-hrw.o. > + > 2015-03-31 Mike Frysinger > > * config.in, configure: Regenerate. > diff --git a/sim/mn10300/Makefile.in b/sim/mn10300/Makefile.in > index cc04f9f..a85d932 100644 > --- a/sim/mn10300/Makefile.in > +++ b/sim/mn10300/Makefile.in > @@ -21,9 +21,7 @@ MN10300_OBJS = \ > itable.o semantics.o idecode.o icache.o engine.o irun.o support.o \ > $(SIM_NEW_COMMON_OBJS) \ > op_utils.o \ > - sim-engine.o \ > sim-hload.o \ > - sim-hrw.o \ > sim-resume.o \ > sim-reason.o \ > sim-stop.o > diff --git a/sim/moxie/ChangeLog b/sim/moxie/ChangeLog > index 785c26e..e59cbfa 100644 > --- a/sim/moxie/ChangeLog > +++ b/sim/moxie/ChangeLog > @@ -1,3 +1,7 @@ > +2015-04-06 Mike Frysinger > + > + * Makefile.in (SIM_OBJS): Delete sim-engine.o and sim-hrw.o. > + > 2015-04-05 Mike Frysinger > > * Makefile.in (SIM_OBJS): Add sim-resume.o. > diff --git a/sim/moxie/Makefile.in b/sim/moxie/Makefile.in > index 963c46b..ff6bed9 100644 > --- a/sim/moxie/Makefile.in > +++ b/sim/moxie/Makefile.in > @@ -23,9 +23,7 @@ SIM_OBJS = \ > $(SIM_NEW_COMMON_OBJS) \ > interp.o \ > sim-cpu.o \ > - sim-engine.o \ > sim-hload.o \ > - sim-hrw.o \ > sim-reason.o \ > sim-resume.o \ > sim-stop.o > diff --git a/sim/msp430/ChangeLog b/sim/msp430/ChangeLog > index 29ff2f7..31e115c 100644 > --- a/sim/msp430/ChangeLog > +++ b/sim/msp430/ChangeLog > @@ -1,3 +1,7 @@ > +2015-04-06 Mike Frysinger > + > + * Makefile.in (SIM_OBJS): Delete sim-engine.o and sim-hrw.o. > + > 2015-04-01 Mike Frysinger > > * Makefile.in (SIM_OBJS): Delete $(SIM_EXTRA_OBJS). > diff --git a/sim/msp430/Makefile.in b/sim/msp430/Makefile.in > index a7f3dee..3ab384f 100644 > --- a/sim/msp430/Makefile.in > +++ b/sim/msp430/Makefile.in > @@ -29,9 +29,7 @@ SIM_OBJS = \ > msp430-sim.o \ > trace.o \ > sim-cpu.o \ > - sim-engine.o \ > sim-hload.o \ > - sim-hrw.o \ > sim-reason.o \ > sim-reg.o \ > sim-resume.o \ > diff --git a/sim/sh/ChangeLog b/sim/sh/ChangeLog > index 64c5741..7b93524 100644 > --- a/sim/sh/ChangeLog > +++ b/sim/sh/ChangeLog > @@ -1,3 +1,7 @@ > +2015-04-06 Mike Frysinger > + > + * Makefile.in (SIM_OBJS): Delete sim-engine.o. > + > 2015-03-31 Mike Frysinger > > * config.in, configure: Regenerate. > diff --git a/sim/sh/Makefile.in b/sim/sh/Makefile.in > index ecfb287..19c15ab 100644 > --- a/sim/sh/Makefile.in > +++ b/sim/sh/Makefile.in > @@ -21,7 +21,6 @@ SIM_OBJS = \ > interp.o \ > $(SIM_NEW_COMMON_OBJS) \ > sim-cpu.o \ > - sim-engine.o \ > sim-hload.o \ > sim-stop.o \ > table.o > diff --git a/sim/sh64/ChangeLog b/sim/sh64/ChangeLog > index b449969..e6a17e0 100644 > --- a/sim/sh64/ChangeLog > +++ b/sim/sh64/ChangeLog > @@ -1,3 +1,7 @@ > +2015-04-06 Mike Frysinger > + > + * Makefile.in (SIM_OBJS): Delete sim-engine.o and sim-hrw.o. > + > 2015-03-31 Mike Frysinger > > * config.in, configure: Regenerate. > diff --git a/sim/sh64/Makefile.in b/sim/sh64/Makefile.in > index 3df481c..19c9957 100644 > --- a/sim/sh64/Makefile.in > +++ b/sim/sh64/Makefile.in > @@ -25,11 +25,10 @@ SIM_OBJS = \ > $(SIM_NEW_COMMON_OBJS) \ > sim-cpu.o \ > sim-hload.o \ > - sim-hrw.o \ > sim-model.o \ > sim-reg.o \ > cgen-utils.o cgen-trace.o cgen-scache.o \ > - cgen-run.o sim-reason.o sim-engine.o sim-stop.o \ > + cgen-run.o sim-reason.o sim-stop.o \ > sim-if.o arch.o \ > $(SH64_OBJS) > > diff --git a/sim/v850/ChangeLog b/sim/v850/ChangeLog > index 22ed5b6..21518e0 100644 > --- a/sim/v850/ChangeLog > +++ b/sim/v850/ChangeLog > @@ -1,3 +1,7 @@ > +2015-04-06 Mike Frysinger > + > + * Makefile.in (SIM_OBJS): Delete sim-engine.o and sim-hrw.o. > + > 2015-03-31 Mike Frysinger > > * config.in, configure: Regenerate. > diff --git a/sim/v850/Makefile.in b/sim/v850/Makefile.in > index c8ccde0..726ed5e 100644 > --- a/sim/v850/Makefile.in > +++ b/sim/v850/Makefile.in > @@ -23,9 +23,7 @@ SIM_OBJS = \ > $(SIM_NEW_COMMON_OBJS) \ > simops.o interp.o \ > itable.o semantics.o idecode.o icache.o engine.o irun.o support.o \ > - sim-engine.o \ > sim-hload.o \ > - sim-hrw.o \ > sim-resume.o \ > sim-reason.o \ > sim-stop.o > -- > 2.3.5 >