diff options
author | Andrew Cagney <cagney@redhat.com> | 1998-02-28 02:51:06 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1998-02-28 02:51:06 +0000 |
commit | 0e701ac37b0154048977636afe262f55a9150492 (patch) | |
tree | e84fefe5fad67b84aa35d7556388e8cc6161ed5f /sim/tic80 | |
parent | 7c5d88c1bb671d64d01766531d48a1dfca8c8ee1 (diff) | |
download | gdb-0e701ac37b0154048977636afe262f55a9150492.zip gdb-0e701ac37b0154048977636afe262f55a9150492.tar.gz gdb-0e701ac37b0154048977636afe262f55a9150492.tar.bz2 |
Add generic sim-info.c:sim_info() function using module mechanism.
Clean up compile probs in mips/vr5400.
Diffstat (limited to 'sim/tic80')
-rw-r--r-- | sim/tic80/ChangeLog | 4 | ||||
-rw-r--r-- | sim/tic80/Makefile.in | 6 | ||||
-rw-r--r-- | sim/tic80/sim-calls.c | 6 |
3 files changed, 7 insertions, 9 deletions
diff --git a/sim/tic80/ChangeLog b/sim/tic80/ChangeLog index cd494e5..4ab9129 100644 --- a/sim/tic80/ChangeLog +++ b/sim/tic80/ChangeLog @@ -1,3 +1,7 @@ +Thu Feb 26 19:08:37 1998 Andrew Cagney <cagney@b1.cygnus.com> + + * sim-calls.c (sim_info): Delete. + Tue Feb 17 14:35:05 1998 Michael Meissner <meissner@cygnus.com> * misc.c (tic80_trace_cond_br): Take size/code arguments, and diff --git a/sim/tic80/Makefile.in b/sim/tic80/Makefile.in index c2ddcdb..45a1862 100644 --- a/sim/tic80/Makefile.in +++ b/sim/tic80/Makefile.in @@ -13,14 +13,14 @@ SIM_OBJS = \ $(SIM_NEW_COMMON_OBJS) \ support.o idecode.o semantics.o itable.o misc.o \ + sim-engine.o \ sim-calls.o \ sim-hload.o \ sim-hrw.o \ - sim-engine.o \ - sim-run.o \ + sim-reason.o \ sim-resume.o \ + sim-run.o \ sim-stop.o \ - sim-reason.o # List of extra dependencies. # Generally this consists of simulator specific files included by sim-main.h. diff --git a/sim/tic80/sim-calls.c b/sim/tic80/sim-calls.c index b3130df..c60bd9b 100644 --- a/sim/tic80/sim-calls.c +++ b/sim/tic80/sim-calls.c @@ -168,12 +168,6 @@ sim_store_register (SIM_DESC sd, int regnr, unsigned char *buf, int length) } -void -sim_info (SIM_DESC sd, int verbose) -{ -} - - SIM_RC sim_create_inferior (SIM_DESC sd, struct _bfd *abfd, |