mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 18:08:24 +08:00
* remote-sp64sim.c (simif_create_inferior): Add FIXME regarding
sim_set_args return code.
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
start-sanitize-v9
|
||||||
|
Tue Aug 3 10:21:58 1993 Doug Evans (dje@canuck.cygnus.com)
|
||||||
|
|
||||||
|
* remote-sp64sim.c (simif_create_inferior): Add FIXME regarding
|
||||||
|
sim_set_args return code.
|
||||||
|
end-sanitize-v9
|
||||||
|
|
||||||
Mon Aug 2 16:35:31 1993 K. Richard Pixley (rich@sendai.cygnus.com)
|
Mon Aug 2 16:35:31 1993 K. Richard Pixley (rich@sendai.cygnus.com)
|
||||||
|
|
||||||
* Makefile.in (VERSION): bumped to 4.9.4.
|
* Makefile.in (VERSION): bumped to 4.9.4.
|
||||||
|
@ -228,6 +228,9 @@ simif_create_inferior (exec_file, args, env)
|
|||||||
strcat (arg_buf, args);
|
strcat (arg_buf, args);
|
||||||
argv = buildargv (arg_buf);
|
argv = buildargv (arg_buf);
|
||||||
make_cleanup (freeargv, (char *) argv);
|
make_cleanup (freeargv, (char *) argv);
|
||||||
|
/* FIXME: remote-sim.h says targets that don't support this return
|
||||||
|
non-zero. Perhaps distinguish between "not supported" and other errors?
|
||||||
|
Or maybe that can be the only error. */
|
||||||
if (sim_set_args (argv, env) != 0)
|
if (sim_set_args (argv, env) != 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user