diff options
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 4 | ||||
-rw-r--r-- | bfd/elfxx-mips.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 25d1db6..333b882 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2016-05-11 Andrew Bennett <andrew.bennett@imgtec.com> + + * elfxx-mips.c (print_mips_ases): Add DSPR3. + 2016-05-11 Alan Modra <amodra@gmail.com> * elf32-hppa.c (elf32_hppa_init_stub_bfd): New function. diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c index 3c2de4e..f9e8f76 100644 --- a/bfd/elfxx-mips.c +++ b/bfd/elfxx-mips.c @@ -15565,6 +15565,8 @@ print_mips_ases (FILE *file, unsigned int mask) fputs ("\n\tDSP ASE", file); if (mask & AFL_ASE_DSPR2) fputs ("\n\tDSP R2 ASE", file); + if (mask & AFL_ASE_DSPR3) + fputs ("\n\tDSP R3 ASE", file); if (mask & AFL_ASE_EVA) fputs ("\n\tEnhanced VA Scheme", file); if (mask & AFL_ASE_MCU) |