* readelf.c (get_machine_flags): Add detection of EF_MIPS_UCODE.

This commit is contained in:
Thiemo Seufer 2001-08-22 18:42:07 +00:00
parent 63d069c06f
commit d1bdd336d4
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2001-08-22 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
* readelf.c (get_machine_flags): Add detection of EF_MIPS_UCODE.
2001-08-21 H.J. Lu <hjl@gnu.org>
* readelf.c (dump_relocations): Support ELF64 on 32bit hosts.

View file

@ -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");