aboutsummaryrefslogtreecommitdiff
path: root/sim/m32c
diff options
context:
space:
mode:
Diffstat (limited to 'sim/m32c')
-rw-r--r--sim/m32c/ChangeLog4
-rw-r--r--sim/m32c/gdb-if.c6
2 files changed, 10 insertions, 0 deletions
diff --git a/sim/m32c/ChangeLog b/sim/m32c/ChangeLog
index 1a34d71..fe8711b 100644
--- a/sim/m32c/ChangeLog
+++ b/sim/m32c/ChangeLog
@@ -1,3 +1,7 @@
+2011-04-16 Mike Frysinger <vapier@gentoo.org>
+
+ * gdb-if.c (sim_complete_command): New stub function.
+
2011-01-11 Andrew Burgess <aburgess@broadcom.com>
* gdb-if.c (sim_store_register): Update return value to
diff --git a/sim/m32c/gdb-if.c b/sim/m32c/gdb-if.c
index 7da4416..23f378f 100644
--- a/sim/m32c/gdb-if.c
+++ b/sim/m32c/gdb-if.c
@@ -703,3 +703,9 @@ sim_do_command (SIM_DESC sd, char *cmd)
printf ("The 'sim' command expects either 'trace' or 'verbose'"
" as a subcommand.\n");
}
+
+char **
+sim_complete_command (SIM_DESC sd, char *text, char *word)
+{
+ return NULL;
+}