diff options
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 7 | ||||
-rw-r--r-- | binutils/NEWS | 4 | ||||
-rw-r--r-- | binutils/readelf.c | 4 |
3 files changed, 15 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index af2a348..da3cf67 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,10 @@ +2017-06-28 Maciej W. Rozycki <macro@imgtec.com> + Matthew Fortune <matthew.fortune@imgtec.com> + + * readelf.c (get_machine_flags) <E_MIPS_MACH_IAMR2>: New case. + (print_mips_isa_ext) <AFL_EXT_INTERAPTIV_MR2>: Likewise. + * NEWS: Mention Imagination interAptiv MR2 processor support. + 2017-06-26 Nick Clifton <nickc@redhat.com> PR binutils/21665 diff --git a/binutils/NEWS b/binutils/NEWS index 753d17f..b49e2d3 100644 --- a/binutils/NEWS +++ b/binutils/NEWS @@ -1,5 +1,9 @@ -*- text -*- +* The MIPS port now supports the Imagination interAptiv MR2 processor, + which implements the MIPS32r3 ISA, the MIPS16e2 ASE as well as a couple + of implementation-specific regular MIPS and MIPS16e2 ASE instructions. + * The SPARC port now supports the SPARC M8 processor, which implements the Oracle SPARC Architecture 2017. diff --git a/binutils/readelf.c b/binutils/readelf.c index 916c6cb..edfe652 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -3334,6 +3334,7 @@ get_machine_flags (unsigned e_flags, unsigned e_machine) case E_MIPS_MACH_OCTEON2: strcat (buf, ", octeon2"); break; case E_MIPS_MACH_OCTEON3: strcat (buf, ", octeon3"); break; case E_MIPS_MACH_XLR: strcat (buf, ", xlr"); break; + case E_MIPS_MACH_IAMR2: strcat (buf, ", interaptiv-mr2"); break; case 0: /* We simply ignore the field in this case to avoid confusion: MIPS ELF does not specify EF_MIPS_MACH, it is a GNU @@ -15131,6 +15132,9 @@ print_mips_isa_ext (unsigned int isa_ext) case AFL_EXT_LOONGSON_2F: fputs ("ST Microelectronics Loongson 2F", stdout); break; + case AFL_EXT_INTERAPTIV_MR2: + fputs ("Imagination interAptiv MR2", stdout); + break; default: fprintf (stdout, "%s (%d)", _("Unknown"), isa_ext); } |