summaryrefslogtreecommitdiff
path: root/sim/h8300
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2011-07-05 19:06:35 +0000
committerMike Frysinger <vapier@gentoo.org>2011-07-05 19:06:35 +0000
commit2142eb8cf1ba3c13f77f99f971f211ad9276ab28 (patch)
tree7622b3c20e9da006025f5e5d76bcc98ab0bdb0c6 /sim/h8300
parent285b9b7e21109edeaac1285f59b93cd0f973af64 (diff)
downloadgdb-2142eb8cf1ba3c13f77f99f971f211ad9276ab28.tar.gz
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/h8300')
-rw-r--r--sim/h8300/ChangeLog4
-rw-r--r--sim/h8300/compile.c7
2 files changed, 4 insertions, 7 deletions
diff --git a/sim/h8300/ChangeLog b/sim/h8300/ChangeLog
index 81d9d01683b..04278f8151c 100644
--- a/sim/h8300/ChangeLog
+++ b/sim/h8300/ChangeLog
@@ -1,3 +1,7 @@
+2011-07-05 Mike Frysinger <vapier@gentoo.org>
+
+ * compile.c (sim_do_command): Delete.
+
2011-01-11 Andrew Burgess <aburgess@broadcom.com>
* compile.c (sim_store_register): Update return value to
diff --git a/sim/h8300/compile.c b/sim/h8300/compile.c
index b249080dd88..7b4a5fad31c 100644
--- a/sim/h8300/compile.c
+++ b/sim/h8300/compile.c
@@ -5108,13 +5108,6 @@ sim_create_inferior (SIM_DESC sd, struct bfd *abfd, char **argv, char **env)
}
void
-sim_do_command (SIM_DESC sd, char *cmd)
-{
- (*sim_callback->printf_filtered) (sim_callback,
- "This simulator does not accept any commands.\n");
-}
-
-void
sim_set_callbacks (struct host_callback_struct *ptr)
{
sim_callback = ptr;