aboutsummaryrefslogtreecommitdiff
path: root/sim/cris
diff options
context:
space:
mode:
authorHans-Peter Nilsson <hp@axis.com>2008-12-30 18:52:44 +0000
committerHans-Peter Nilsson <hp@axis.com>2008-12-30 18:52:44 +0000
commita0956358392d42d909bc19a9361e84aa2569e8dd (patch)
treef60ad8b5a6550c82170117610a356c07786d3338 /sim/cris
parentfe524faa87338b3324439dadbaf6afa3734312d5 (diff)
downloadgdb-a0956358392d42d909bc19a9361e84aa2569e8dd.zip
gdb-a0956358392d42d909bc19a9361e84aa2569e8dd.tar.gz
gdb-a0956358392d42d909bc19a9361e84aa2569e8dd.tar.bz2
* cris/sim-if.c (sim_open): If sim_analyze_program fails, emit
just a short CRIS-specific notice. Tweak the wording for a failing architecture test.
Diffstat (limited to 'sim/cris')
-rw-r--r--sim/cris/sim-if.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/sim/cris/sim-if.c b/sim/cris/sim-if.c
index 323c40e..29e796e 100644
--- a/sim/cris/sim-if.c
+++ b/sim/cris/sim-if.c
@@ -688,12 +688,10 @@ sim_open (SIM_OPEN_KIND kind, host_callback *callback, struct bfd *abfd,
: NULL),
abfd) != SIM_RC_OK)
{
- if (STATE_PROG_ARGV (sd) != NULL)
- sim_io_eprintf (sd, "%s: invalid executable `%s'\n",
- STATE_MY_NAME (sd), *STATE_PROG_ARGV (sd));
- else
- sim_io_eprintf (sd, "%s: invalid executable\n",
- STATE_MY_NAME (sd));
+ /* When there's an error, sim_analyze_program has already output
+ a message. Let's just clarify it, as "not an object file"
+ perhaps doesn't ring a bell. */
+ sim_io_eprintf (sd, "(not a CRIS program)\n");
free_state (sd);
return 0;
}
@@ -707,7 +705,7 @@ sim_open (SIM_OPEN_KIND kind, host_callback *callback, struct bfd *abfd,
if (bfd_get_arch (abfd) == bfd_arch_unknown)
{
if (STATE_PROG_ARGV (sd) != NULL)
- sim_io_eprintf (sd, "%s: not a CRIS program `%s'\n",
+ sim_io_eprintf (sd, "%s: `%s' is not a CRIS program\n",
STATE_MY_NAME (sd), *STATE_PROG_ARGV (sd));
else
sim_io_eprintf (sd, "%s: program to be run is not a CRIS program\n",