diff --git a/sim/m32c/ChangeLog b/sim/m32c/ChangeLog index 228f52b003..e8e162450d 100644 --- a/sim/m32c/ChangeLog +++ b/sim/m32c/ChangeLog @@ -1,3 +1,8 @@ +2015-08-05 Nick Clifton + + * gdb-if.c (sim_info): Stub function to allow GDB to be built + with this simulator. + 2015-06-23 Mike Frysinger * configure: Regenerate. diff --git a/sim/m32c/gdb-if.c b/sim/m32c/gdb-if.c index be00545269..153031c5a9 100644 --- a/sim/m32c/gdb-if.c +++ b/sim/m32c/gdb-if.c @@ -705,3 +705,9 @@ sim_complete_command (SIM_DESC sd, const char *text, const char *word) { return NULL; } + +void +sim_info (SIM_DESC sd, int verbose) +{ + printf ("The m32c minisim doesn't collect any statistics.\n"); +}