diff options
Diffstat (limited to 'binutils/readelf.c')
-rw-r--r-- | binutils/readelf.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/binutils/readelf.c b/binutils/readelf.c index fd0069e..592d893 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -2015,7 +2015,11 @@ get_machine_flags (unsigned e_flags, unsigned e_machine) if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_M68000) strcat (buf, ", m68000"); else if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_CPU32) - strcat (buf, ", cpu32"); + { + strcat (buf, ", cpu32"); + if (e_flags & EF_M68K_CPU32_FIDO_A) + strcat (buf, ", fido_a"); + } else { char const *isa = _("unknown"); |