diff options
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/ld.texinfo | 3 | ||||
-rw-r--r-- | ld/mri.c | 3 |
3 files changed, 5 insertions, 6 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index ee24342..7b75643 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,5 +1,10 @@ 2018-04-16 Alan Modra <amodra@gmail.com> + * ld.texinfo: Remove IEEE 695 support. + * mri.c: Likewise. + +2018-04-16 Alan Modra <amodra@gmail.com> + * Makefile.am: Remove tandem support. * configure.tgt: Likewise. * emulparams/st2000.sh: Delete. diff --git a/ld/ld.texinfo b/ld/ld.texinfo index cd7aa6d..11193f8 100644 --- a/ld/ld.texinfo +++ b/ld/ld.texinfo @@ -8609,9 +8609,6 @@ language, but restricted to one of these output formats: S-records, if @var{output-format} is @samp{S} @item -IEEE, if @var{output-format} is @samp{IEEE} - -@item COFF (the @samp{coff-m68k} variant in BFD), if @var{output-format} is @samp{COFF} @end enumerate @@ -285,9 +285,6 @@ mri_format (const char *name) if (strcmp (name, "S") == 0) lang_add_output_format ("srec", NULL, NULL, 1); - else if (strcmp (name, "IEEE") == 0) - lang_add_output_format ("ieee", NULL, NULL, 1); - else if (strcmp (name, "COFF") == 0) lang_add_output_format ("coff-m68k", NULL, NULL, 1); |