2013-09-17 Doug Gilmore <Doug.Gilmore@imgtec.com>

* readelf.c (get_machine_flags): Handle EF_MIPS_FP64.
This commit is contained in:
Steve Ellcey 2013-09-17 21:09:27 +00:00
parent f1c38003e7
commit fef1b0b33b
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2013-09-17 Doug Gilmore <Doug.Gilmore@imgtec.com>
* readelf.c (get_machine_flags): Handle EF_MIPS_FP64.
2013-09-12 Nick Clifton <nickc@redhat.com>
* dwarf.c (dwarf_vmatoa): Rename to dwarf_vmatoa_1 and add a

View File

@ -2571,6 +2571,9 @@ get_machine_flags (unsigned e_flags, unsigned e_machine)
if (e_flags & EF_MIPS_NAN2008)
strcat (buf, ", nan2008");
if (e_flags & EF_MIPS_FP64)
strcat (buf, ", fp64");
switch ((e_flags & EF_MIPS_MACH))
{
case E_MIPS_MACH_3900: strcat (buf, ", 3900"); break;