From: Thiemo Seufer Date: Wed, 22 Aug 2001 18:42:07 +0000 (+0000) Subject: * readelf.c (get_machine_flags): Add detection of EF_MIPS_UCODE. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d1bdd336d401266dbf03d28b7ce4ec9bf1459bf6;p=binutils-gdb.git * readelf.c (get_machine_flags): Add detection of EF_MIPS_UCODE. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 90eec720cca..3cc611713c6 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2001-08-22 Thiemo Seufer + + * readelf.c (get_machine_flags): Add detection of EF_MIPS_UCODE. + 2001-08-21 H.J. Lu * readelf.c (dump_relocations): Support ELF64 on 32bit hosts. diff --git a/binutils/readelf.c b/binutils/readelf.c index fd375eb0035..5cdbc6d3769 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -1601,6 +1601,9 @@ get_machine_flags (e_flags, e_machine) if (e_flags & EF_MIPS_CPIC) strcat (buf, ", cpic"); + if (e_flags & EF_MIPS_UCODE) + strcat (buf, ", ugen_reserved"); + if (e_flags & EF_MIPS_ABI2) strcat (buf, ", abi2");