forked from Imagelibrary/binutils-gdb
* readelf.c (get_machine_flags): Add detection of EF_MIPS_32BITMODE.
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
2001-08-26 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
|
||||||
|
|
||||||
|
* readelf.c (get_machine_flags): Add detection of EF_MIPS_32BITMODE.
|
||||||
|
|
||||||
2001-08-25 H.J. Lu <hjl@gnu.org>
|
2001-08-25 H.J. Lu <hjl@gnu.org>
|
||||||
|
|
||||||
* nm.c (print_width): New.
|
* nm.c (print_width): New.
|
||||||
|
|||||||
@@ -1607,6 +1607,9 @@ get_machine_flags (e_flags, e_machine)
|
|||||||
if (e_flags & EF_MIPS_ABI2)
|
if (e_flags & EF_MIPS_ABI2)
|
||||||
strcat (buf, ", abi2");
|
strcat (buf, ", abi2");
|
||||||
|
|
||||||
|
if (e_flags & EF_MIPS_32BITMODE)
|
||||||
|
strcat (buf, ", 32bitmode");
|
||||||
|
|
||||||
if ((e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_1)
|
if ((e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_1)
|
||||||
strcat (buf, ", mips1");
|
strcat (buf, ", mips1");
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user