diff options
author | David Edelsohn <dje.gcc@gmail.com> | 1993-08-03 17:25:23 +0000 |
---|---|---|
committer | David Edelsohn <dje.gcc@gmail.com> | 1993-08-03 17:25:23 +0000 |
commit | 6eb0b28399470212ba19d944beeef53b6d3acefa (patch) | |
tree | 93f4be4e5d8304b6c903219fe0409ab866053ad9 /gdb/remote-sp64sim.c | |
parent | b367204f7f12d34b85ebe89aa8b49582a8a795a7 (diff) | |
download | gdb-6eb0b28399470212ba19d944beeef53b6d3acefa.zip gdb-6eb0b28399470212ba19d944beeef53b6d3acefa.tar.gz gdb-6eb0b28399470212ba19d944beeef53b6d3acefa.tar.bz2 |
* 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.c | 3 |
1 files changed, 3 insertions, 0 deletions
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; |