summaryrefslogtreecommitdiff
path: root/gdb/remote-sp64sim.c
diff options
context:
space:
mode:
authorDavid Edelsohn <dje.gcc@gmail.com>1993-08-03 17:25:23 +0000
committerDavid Edelsohn <dje.gcc@gmail.com>1993-08-03 17:25:23 +0000
commit6eb0b28399470212ba19d944beeef53b6d3acefa (patch)
tree93f4be4e5d8304b6c903219fe0409ab866053ad9 /gdb/remote-sp64sim.c
parentb367204f7f12d34b85ebe89aa8b49582a8a795a7 (diff)
downloadbinutils-gdb-6eb0b28399470212ba19d944beeef53b6d3acefa.tar.gz
* remote-sp64sim.c (simif_create_inferior): Add FIXME regarding
sim_set_args return code.
Diffstat (limited to 'gdb/remote-sp64sim.c')
-rw-r--r--gdb/remote-sp64sim.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/remote-sp64sim.c b/gdb/remote-sp64sim.c
index ced255d0390..1bc6250a5a7 100644
--- a/gdb/remote-sp64sim.c
+++ b/gdb/remote-sp64sim.c
@@ -228,6 +228,9 @@ simif_create_inferior (exec_file, args, env)
strcat (arg_buf, args);
argv = buildargv (arg_buf);
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)
return;