diff options
author | Matthew Fortune <matthew.fortune@imgtec.com> | 2014-11-04 23:37:28 +0000 |
---|---|---|
committer | Matthew Fortune <matthew.fortune@imgtec.com> | 2014-11-05 10:48:38 +0000 |
commit | 09c14161c5bbba3a3969a48efafbff3b9a4de42a (patch) | |
tree | db29d547e710e0ea57fbf90570926eda5faeb11e /bfd/elfxx-mips.c | |
parent | 7fc5ac571661cb5e5dac3fe3d2284c9d0079ff33 (diff) | |
download | gdb-09c14161c5bbba3a3969a48efafbff3b9a4de42a.zip gdb-09c14161c5bbba3a3969a48efafbff3b9a4de42a.tar.gz gdb-09c14161c5bbba3a3969a48efafbff3b9a4de42a.tar.bz2 |
Update .MIPS.abiflags to support MIPS R6
bfd/
* elfxx-mips.c (update_mips_abiflags_isa): Add E_MIPS_ARCH_32R6
and E_MIPS_ARCH_64R6 support.
ld/testsuite/
* ld-mips-elf/abiflags-strip10-ph.d: New file.
* ld-mips-elf/mips-eld.exp: Run the new test.
gas/
* config/tc-mips.c (mips_elf_final_processing): Add INSN_ISA32R6
and INSN_ISA64R6 support.
gas/testsuite/
* gas/mips/elf_arch_mips32r6.d: New file.
* gas/mips/elf_arch_mips64r6.d: New file.
* gas/mips/mips.exp: Run the new tests.
Diffstat (limited to 'bfd/elfxx-mips.c')
-rw-r--r-- | bfd/elfxx-mips.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c index f82102a..c599366 100644 --- a/bfd/elfxx-mips.c +++ b/bfd/elfxx-mips.c @@ -13959,6 +13959,10 @@ update_mips_abiflags_isa (bfd *abfd, Elf_Internal_ABIFlags_v0 *abiflags) if (abiflags->isa_rev < 2) abiflags->isa_rev = 2; break; + case E_MIPS_ARCH_32R6: + abiflags->isa_level = 32; + abiflags->isa_rev = 6; + break; case E_MIPS_ARCH_64: abiflags->isa_level = 64; abiflags->isa_rev = 1; @@ -13969,6 +13973,10 @@ update_mips_abiflags_isa (bfd *abfd, Elf_Internal_ABIFlags_v0 *abiflags) if (abiflags->isa_rev < 2) abiflags->isa_rev = 2; break; + case E_MIPS_ARCH_64R6: + abiflags->isa_level = 64; + abiflags->isa_rev = 6; + break; default: (*_bfd_error_handler) (_("%B: Unknown architecture %s"), |