This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-aarch64-stable-allyesconfig in repository toolchain/ci/binutils-gdb.
from efea62b446 Fix array overrun when disassembling corrupt TIC30 binaries. adds 70cf683455 When copying pe format files, copy the dos_message array, ra [...] adds ed2a222951 Load system gdbinit files from a directory adds 35e65c49df Replace bsearch with a std::lower_bound-based search adds 0c921b219c Only make a nullterminated string if we need to adds 31edb80295 Change some arguments to gdb::string_view instead of name+len adds 90421c5656 addrmap: use gdb_static_assert for type size assertions adds cdc46a9ff4 Remove unused includes in ada-*.c files adds de93309a38 Clean up ada-lang.h adds f18ad8a16b Remove unused includes in infcmd.c and infrun.c adds 74fb338f46 Automatic date update in version.in adds 507916b855 x86: drop stray W adds a2cebd03fa x86: slightly rearrange struct insn_template adds 3cc17af589 x86: re-do "shorthand" handling adds a961a1e174 x86: add tests to cover defaulting of operand sizes for ambi [...] adds 197245e341 Add a --output=<DIR> option to ar to allow the specifying of [...] adds a712c56a9a Update email address for Palmer Dabbelt. adds 864619bb2e Add the ability to the BFD library to read build-ids from co [...] adds 1820262bc9 Modify the ARNM assembler to accept the omission of the imme [...] new 808590ec5a Only clear the minsym array when necessary
The 1 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 | 30 + bfd/elf-bfd.h | 7 + bfd/elf.c | 23 +- bfd/elfcore.h | 106 + bfd/elfxx-target.h | 4 + bfd/libcoff-in.h | 1 + bfd/libcoff.h | 1 + bfd/peXXigen.c | 21 +- bfd/peicode.h | 24 + bfd/version.h | 2 +- binutils/ChangeLog | 19 + binutils/MAINTAINERS | 2 +- binutils/NEWS | 3 + binutils/ar.c | 155 +- binutils/doc/binutils.texi | 19 +- binutils/testsuite/binutils-all/ar.exp | 45 + gas/ChangeLog | 24 + gas/config/tc-aarch64.c | 44 +- gas/config/tc-i386.c | 11 +- gas/testsuite/gas/aarch64/illegal-ldraa.l | 52 +- gas/testsuite/gas/aarch64/illegal-ldraa.s | 2 - gas/testsuite/gas/aarch64/ldraa-ldrab-no-offset.d | 13 + gas/testsuite/gas/aarch64/ldraa-ldrab-no-offset.s | 7 + gas/testsuite/gas/i386/i386.exp | 3 + gas/testsuite/gas/i386/noreg16.d | 67 + gas/testsuite/gas/i386/noreg16.s | 61 + gas/testsuite/gas/i386/noreg32.d | 67 + gas/testsuite/gas/i386/noreg32.s | 60 + gas/testsuite/gas/i386/noreg64.d | 67 + gas/testsuite/gas/i386/noreg64.s | 60 + gdb/ChangeLog | 119 + gdb/Makefile.in | 1 + gdb/NEWS | 6 + gdb/ada-lang.c | 1867 +++-- gdb/ada-lang.h | 34 - gdb/ada-typeprint.c | 9 - gdb/ada-valprint.c | 6 +- gdb/addrmap.c | 16 +- gdb/coffread.c | 5 +- gdb/config.in | 7 + gdb/configure | 51 + gdb/configure.ac | 3 + gdb/ctfread.c | 14 +- gdb/dbxread.c | 24 +- gdb/doc/ChangeLog | 7 + gdb/doc/Makefile.in | 4 + gdb/doc/gdb.texinfo | 74 +- gdb/dwarf2-frame.c | 24 +- gdb/dwarf2read.c | 29 +- gdb/elfread.c | 25 +- gdb/extension.c | 3 + gdb/gdbsupport/gdb_binary_search.h | 59 + gdb/infcmd.c | 6 - gdb/infrun.c | 6 - gdb/main.c | 82 +- gdb/mdebugread.c | 80 +- gdb/minsyms.c | 40 +- gdb/minsyms.h | 10 +- gdb/psympriv.h | 3 +- gdb/psymtab.c | 8 +- gdb/stabsread.c | 5 +- gdb/symtab.c | 58 +- gdb/symtab.h | 10 +- gdb/top.c | 4 + gdb/xcoffread.c | 42 +- opcodes/ChangeLog | 36 + opcodes/aarch64-opc-2.c | 2 +- opcodes/aarch64-opc.c | 7 +- opcodes/aarch64-tbl.h | 2 +- opcodes/i386-gen.c | 82 +- opcodes/i386-opc.h | 12 +- opcodes/i386-opc.tbl | 24 +- opcodes/i386-reg.tbl | 354 +- opcodes/i386-tbl.h | 7836 ++++++++++----------- 74 files changed, 6598 insertions(+), 5498 deletions(-) create mode 100644 gas/testsuite/gas/aarch64/ldraa-ldrab-no-offset.d create mode 100644 gas/testsuite/gas/aarch64/ldraa-ldrab-no-offset.s create mode 100644 gas/testsuite/gas/i386/noreg16.d create mode 100644 gas/testsuite/gas/i386/noreg16.s create mode 100644 gas/testsuite/gas/i386/noreg32.d create mode 100644 gas/testsuite/gas/i386/noreg32.s create mode 100644 gas/testsuite/gas/i386/noreg64.d create mode 100644 gas/testsuite/gas/i386/noreg64.s create mode 100644 gdb/gdbsupport/gdb_binary_search.h