aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog5
-rw-r--r--ld/ld.texinfo3
-rw-r--r--ld/mri.c3
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
diff --git a/ld/mri.c b/ld/mri.c
index 788ca4e..c07d358 100644
--- a/ld/mri.c
+++ b/ld/mri.c
@@ -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);