aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog4
-rw-r--r--binutils/readelf.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 508f632..a5789c4 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,7 @@
+2002-02-13 Matt Fredette <fredette@netbsd.org>
+
+ * readelf.c (get_machine_flags): Recognize EF_M68000.
+
2002-02-12 Alexandre Oliva <aoliva@redhat.com>
* MAINTAINERS: Added self as MN10300 co-maintainer.
diff --git a/binutils/readelf.c b/binutils/readelf.c
index 0c95f05..3bd67ba 100644
--- a/binutils/readelf.c
+++ b/binutils/readelf.c
@@ -1641,6 +1641,8 @@ get_machine_flags (e_flags, e_machine)
case EM_68K:
if (e_flags & EF_CPU32)
strcat (buf, ", cpu32");
+ if (e_flags & EF_M68000)
+ strcat (buf, ", m68000");
break;
case EM_PPC: