This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from b638b5d57f x86-64: Clear the R_X86_64_converted_reloc_bit bit new 471b9d1507 GDB PR tdep/8282: MIPS: Wire in `set disassembler-options' new 30e5322741 MIPS/LD/testsuite: Fix a typo in PR ld/21334 test name new 156f2c001e microMIPS/BFD: Add missing NewABI TLS and miscellaneous relocations new 14c80123c0 microMIPS/GAS: Handle several percent-ops with macros new 12f09816ce MIPS/BFD: Make section GC work with `ict_irix5' targets
The 5 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: bfd/ChangeLog | 20 ++ bfd/elf64-mips.c | 335 +++++++++++++++++++++ bfd/elfn32-mips.c | 335 +++++++++++++++++++++ bfd/elfxx-mips.c | 1 + gas/ChangeLog | 26 ++ gas/config/tc-mips.c | 21 +- .../gas/mips/elf-rel28-lldscd-micromips-n32.d | 138 +++++++++ .../gas/mips/elf-rel28-lldscd-micromips-n64.d | 222 ++++++++++++++ gas/testsuite/gas/mips/elf-rel28-lldscd-n32.d | 96 ++++++ gas/testsuite/gas/mips/elf-rel28-lldscd-n64.d | 180 +++++++++++ gas/testsuite/gas/mips/elf-rel28-micromips-n32.d | 96 ++++++ gas/testsuite/gas/mips/elf-rel28-micromips-n64.d | 180 +++++++++++ gas/testsuite/gas/mips/elf-rel28.s | 12 + gas/testsuite/gas/mips/mips.exp | 6 + gdb/ChangeLog | 37 +++ gdb/NEWS | 3 + gdb/arm-tdep.c | 3 +- gdb/disasm.c | 127 +++++++- gdb/disasm.h | 5 + gdb/doc/ChangeLog | 6 + gdb/doc/gdb.texinfo | 2 +- gdb/gdbarch.c | 28 +- gdb/gdbarch.h | 7 +- gdb/gdbarch.sh | 3 +- gdb/mips-tdep.c | 60 ++-- gdb/testsuite/ChangeLog | 6 + .../gdb.arch/mips-disassembler-options.exp | 58 ++++ gdb/testsuite/gdb.arch/mips-disassembler-options.s | 30 ++ include/ChangeLog | 10 + include/dis-asm.h | 50 ++- ld/ChangeLog | 5 + ld/testsuite/ld-mips-elf/mips-elf.exp | 2 +- opcodes/ChangeLog | 13 + opcodes/arm-dis.c | 16 +- opcodes/mips-dis.c | 210 +++++++++---- opcodes/ppc-dis.c | 18 +- opcodes/s390-dis.c | 16 +- 37 files changed, 2248 insertions(+), 135 deletions(-) create mode 100644 gas/testsuite/gas/mips/elf-rel28-lldscd-micromips-n32.d create mode 100644 gas/testsuite/gas/mips/elf-rel28-lldscd-micromips-n64.d create mode 100644 gas/testsuite/gas/mips/elf-rel28-lldscd-n32.d create mode 100644 gas/testsuite/gas/mips/elf-rel28-lldscd-n64.d create mode 100644 gas/testsuite/gas/mips/elf-rel28-micromips-n32.d create mode 100644 gas/testsuite/gas/mips/elf-rel28-micromips-n64.d create mode 100644 gdb/testsuite/gdb.arch/mips-disassembler-options.exp create mode 100644 gdb/testsuite/gdb.arch/mips-disassembler-options.s