diff options
author | Michael Snyder <msnyder@specifix.com> | 2004-01-06 00:58:48 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@specifix.com> | 2004-01-06 00:58:48 +0000 |
commit | c6d021154f9a1a5d72fd13e25b89435f6b79f8dd (patch) | |
tree | ed748cdcddc527f38734ab9b553757ba2877fd5b /sim | |
parent | 539a18e7013ef43d7865a8e28a3c337683283137 (diff) | |
download | gdb-c6d021154f9a1a5d72fd13e25b89435f6b79f8dd.tar.gz |
2004-01-05 Michael Snyder <msnyder@redhat.com>
* compile.c (sim_load): Don't pass a type to bfd_openr.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/h8300/ChangeLog | 4 | ||||
-rw-r--r-- | sim/h8300/compile.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/sim/h8300/ChangeLog b/sim/h8300/ChangeLog index 5d66c95ea85..9938196d7b6 100644 --- a/sim/h8300/ChangeLog +++ b/sim/h8300/ChangeLog @@ -1,3 +1,7 @@ +2004-01-05 Michael Snyder <msnyder@redhat.com> + + * compile.c (sim_load): Don't pass a type to bfd_openr. + 2003-12-16 Michael Snyder <msnyder@redhat.com> Patch submitted by Anil Paranjape <AnilP1@KPITCummins.com> diff --git a/sim/h8300/compile.c b/sim/h8300/compile.c index 462240ce145..ec5f974c7b3 100644 --- a/sim/h8300/compile.c +++ b/sim/h8300/compile.c @@ -5052,7 +5052,7 @@ sim_load (SIM_DESC sd, char *prog, bfd *abfd, int from_tty) if (abfd != NULL) prog_bfd = abfd; else - prog_bfd = bfd_openr (prog, "coff-h8300"); + prog_bfd = bfd_openr (prog, NULL); if (prog_bfd != NULL) { /* Set the cpu type. We ignore failure from bfd_check_format |