2013-09-17 Doug Gilmore <Doug.Gilmore@imgtec.com>
authorSteve Ellcey <sje@cup.hp.com>
Tue, 17 Sep 2013 21:09:27 +0000 (21:09 +0000)
committerSteve Ellcey <sje@cup.hp.com>
Tue, 17 Sep 2013 21:09:27 +0000 (21:09 +0000)
* readelf.c (get_machine_flags): Handle EF_MIPS_FP64.

binutils/ChangeLog
binutils/readelf.c

index 423611c55c45a9099d566387e76cbda24f2a5661..1bbbe2e64b3136499c691453813b996366084f38 100644 (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
index 2dd1d8bef2e159234c9e7be4ae877775ed12c250..0568a673eb82a893d0d2a67b17b1ef467264b3a7 100644 (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;