diff options
Diffstat (limited to 'sim/m68hc11')
-rw-r--r-- | sim/m68hc11/ChangeLog | 4 | ||||
-rw-r--r-- | sim/m68hc11/interp.c | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/sim/m68hc11/ChangeLog b/sim/m68hc11/ChangeLog index 0ee8235..fbf142b 100644 --- a/sim/m68hc11/ChangeLog +++ b/sim/m68hc11/ChangeLog @@ -1,5 +1,9 @@ 2016-01-03 Mike Frysinger <vapier@gentoo.org> + * interp.c (sim_open): Update sim_parse_args comment. + +2016-01-03 Mike Frysinger <vapier@gentoo.org> + * sim-main.h (sim_state): Delete devices member. 2016-01-03 Mike Frysinger <vapier@gentoo.org> diff --git a/sim/m68hc11/interp.c b/sim/m68hc11/interp.c index a51266b..25cea7c 100644 --- a/sim/m68hc11/interp.c +++ b/sim/m68hc11/interp.c @@ -445,9 +445,7 @@ sim_open (SIM_OPEN_KIND kind, host_callback *callback, return 0; } - /* getopt will print the error message so we just have to exit if this fails. - FIXME: Hmmm... in the case of gdb we need getopt to call - print_filtered. */ + /* The parser will print an error message for us, so we silently return. */ if (sim_parse_args (sd, argv) != SIM_RC_OK) { /* Uninstall the modules to avoid memory leaks, |