diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-07-05 19:06:38 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-07-05 19:06:38 +0000 |
commit | 2419798b808521c666c29abc9b816154a979d69e (patch) | |
tree | 17bb3de27399d93aa661d0ad8622ef4a3bbc7564 /sim/mn10300/interp.c | |
parent | 52cb9dfed024ca2df3a1a7f7340e7faa07321db3 (diff) | |
download | gdb-2419798b808521c666c29abc9b816154a979d69e.zip gdb-2419798b808521c666c29abc9b816154a979d69e.tar.gz gdb-2419798b808521c666c29abc9b816154a979d69e.tar.bz2 |
sim: start a unified sim_do_command
Since sim_do_command for many people simply calls sim_args_command, start
a unified version of it. For people who handle their own options, they
could switch to this by using sim_add_option_table instead.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'sim/mn10300/interp.c')
-rw-r--r-- | sim/mn10300/interp.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/sim/mn10300/interp.c b/sim/mn10300/interp.c index 1230bf5..e06ae59 100644 --- a/sim/mn10300/interp.c +++ b/sim/mn10300/interp.c @@ -328,23 +328,6 @@ sim_create_inferior (SIM_DESC sd, return SIM_RC_OK; } -void -sim_do_command (SIM_DESC sd, char *cmd) -{ - char *mm_cmd = "memory-map"; - char *int_cmd = "interrupt"; - - if (sim_args_command (sd, cmd) != SIM_RC_OK) - { - if (strncmp (cmd, mm_cmd, strlen (mm_cmd) == 0)) - sim_io_eprintf (sd, "`memory-map' command replaced by `sim memory'\n"); - else if (strncmp (cmd, int_cmd, strlen (int_cmd)) == 0) - sim_io_eprintf (sd, "`interrupt' command replaced by `sim watch'\n"); - else - sim_io_eprintf (sd, "Unknown command `%s'\n", cmd); - } -} - /* FIXME These would more efficient to use than load_mem/store_mem, but need to be changed to use the memory map. */ |