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/cris/sim-if.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/cris/sim-if.c')
-rw-r--r-- | sim/cris/sim-if.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/sim/cris/sim-if.c b/sim/cris/sim-if.c index 9dc7e34..64a758c 100644 --- a/sim/cris/sim-if.c +++ b/sim/cris/sim-if.c @@ -1094,13 +1094,6 @@ sim_create_inferior (SIM_DESC sd, struct bfd *abfd, return SIM_RC_OK; } - -void -sim_do_command (SIM_DESC sd, char *cmd) -{ - if (sim_args_command (sd, cmd) != SIM_RC_OK) - sim_io_eprintf (sd, "Unknown command `%s'\n", cmd); -} /* Disassemble an instruction. */ |