summaryrefslogtreecommitdiff
path: root/gdb/remote-sim.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/remote-sim.c')
-rw-r--r--gdb/remote-sim.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/gdb/remote-sim.c b/gdb/remote-sim.c
index 918eab856f3..c3a84437018 100644
--- a/gdb/remote-sim.c
+++ b/gdb/remote-sim.c
@@ -469,13 +469,17 @@ gdbsim_create_inferior (char *exec_file, char *args, char **env, int from_tty)
}
else
argv = NULL;
- sim_create_inferior (gdbsim_desc, exec_bfd, argv, env);
- inferior_ptid = pid_to_ptid (42);
- target_mark_running (&gdbsim_ops);
- insert_breakpoints (); /* Needed to get correct instruction in cache */
+ // ARC 12/01/09 check return status
+ // GDB Bug #9734
+ if (sim_create_inferior (gdbsim_desc, exec_bfd, argv, env) == SIM_RC_OK)
+ {
+ inferior_ptid = pid_to_ptid (42);
+ target_mark_running (&gdbsim_ops);
+ insert_breakpoints (); /* Needed to get correct instruction in cache */
- clear_proceed_status ();
+ clear_proceed_status ();
+ }
}
/* The open routine takes the rest of the parameters from the command,