diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-03-31 01:13:12 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-04-01 01:22:44 -0400 |
commit | 0fe84f3fbe9a740c38a8dbaa0150b8e4c25c69dd (patch) | |
tree | c52807092eb6da88708bb229b3110cfaf5c06faf /sim/d10v | |
parent | aadc9410ba24ecf777fcc515afda69ef94d74248 (diff) | |
download | gdb-0fe84f3fbe9a740c38a8dbaa0150b8e4c25c69dd.zip gdb-0fe84f3fbe9a740c38a8dbaa0150b8e4c25c69dd.tar.gz gdb-0fe84f3fbe9a740c38a8dbaa0150b8e4c25c69dd.tar.bz2 |
sim: run: punt!
Now that all targets have been converted to nrun, we can finally punt
this old inconsistent interface.
A few stray references to the old run were sprinkled about; clean them
up in the process.
We leave behind the run(1) man page mostly so that we get it updated for
the new nrun interface.
Diffstat (limited to 'sim/d10v')
-rw-r--r-- | sim/d10v/ChangeLog | 4 | ||||
-rw-r--r-- | sim/d10v/interp.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sim/d10v/ChangeLog b/sim/d10v/ChangeLog index 06e956d..e34b918 100644 --- a/sim/d10v/ChangeLog +++ b/sim/d10v/ChangeLog @@ -1,3 +1,7 @@ +2015-04-01 Mike Frysinger <vapier@gentoo.org> + + * interp.c (sim_set_profile, sim_set_profile_size): Delete. + 2015-03-31 Mike Frysinger <vapier@gentoo.org> * Makefile.in (simops.o): New rule. diff --git a/sim/d10v/interp.c b/sim/d10v/interp.c index 0e14392..1aae3e4 100644 --- a/sim/d10v/interp.c +++ b/sim/d10v/interp.c @@ -43,8 +43,6 @@ static void do_long (uint32 ins); static void do_2_short (uint16 ins1, uint16 ins2, enum _leftright leftright); static void do_parallel (uint16 ins1, uint16 ins2); static char *add_commas (char *buf, int sizeof_buf, unsigned long value); -extern void sim_set_profile (int n); -extern void sim_set_profile_size (int n); static INLINE uint8 *map_memory (unsigned phys_addr); #define MAX_HASH 63 |