diff options
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/readelf.c | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index fe84d2c..0290e3f 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2013-07-12 Maciej W. Rozycki <macro@codesourcery.com> + + * readelf.c (get_machine_flags): Handle EF_MIPS_NAN2008. + 2013-07-10 Tristan Gingold <gingold@adacore.com> * od-xcoff.c (OPT_LDINFO): Define. diff --git a/binutils/readelf.c b/binutils/readelf.c index 6b75fac..f73bb2f 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -2568,6 +2568,9 @@ get_machine_flags (unsigned e_flags, unsigned e_machine) if (e_flags & EF_MIPS_32BITMODE) strcat (buf, ", 32bitmode"); + if (e_flags & EF_MIPS_NAN2008) + strcat (buf, ", nan2008"); + switch ((e_flags & EF_MIPS_MACH)) { case E_MIPS_MACH_3900: strcat (buf, ", 3900"); break; |