aboutsummaryrefslogtreecommitdiff
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
parentb367204f7f12d34b85ebe89aa8b49582a8a795a7 (diff)
downloadgdb-6eb0b28399470212ba19d944beeef53b6d3acefa.zip
gdb-6eb0b28399470212ba19d944beeef53b6d3acefa.tar.gz
gdb-6eb0b28399470212ba19d944beeef53b6d3acefa.tar.bz2
* remote-sp64sim.c (simif_create_inferior): Add FIXME regarding
sim_set_args return code.
-rw-r--r--gdb/ChangeLog7
-rw-r--r--gdb/remote-sp64sim.c3
2 files changed, 10 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 3db171c..8bb7c46 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -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)
* Makefile.in (VERSION): bumped to 4.9.4.
diff --git a/gdb/remote-sp64sim.c b/gdb/remote-sp64sim.c
index ced255d..1bc6250 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;