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-allmodconfig in repository toolchain/ci/binutils-gdb.
from 2f1575ea6f Fix the size of the dos_message field in the internal_extra_ [...] adds 66a66a17f4 Fix array overruns in the S12Z disassembler. adds 993a00a986 Prevent a left shift by a negative value when disassembling [...] adds 9adb259150 Fix a potential illegal array access in the D30V disassembler. adds 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 new 507916b855 x86: drop stray W new a2cebd03fa x86: slightly rearrange struct insn_template new 3cc17af589 x86: re-do "shorthand" handling new a961a1e174 x86: add tests to cover defaulting of operand sizes for ambi [...]
The 4 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 | 12 + bfd/libcoff-in.h | 1 + bfd/libcoff.h | 1 + bfd/peXXigen.c | 21 +- bfd/peicode.h | 24 + bfd/version.h | 2 +- gas/ChangeLog | 12 + gas/config/tc-i386.c | 11 +- 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 | 111 + 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 | 18 +- 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 | 50 + opcodes/d30v-dis.c | 5 +- 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 ++++++++++++++++++------------------ opcodes/ia64-opc.c | 9 +- opcodes/s12z-dis.c | 53 +- opcodes/s12z-opc.c | 12 +- opcodes/tic30-dis.c | 2 +- 61 files changed, 6227 insertions(+), 5392 deletions(-) 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