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-arm-lts-allyesconfig in repository toolchain/ci/binutils-gdb.
from 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 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.
No new revisions were added by this update.
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 +- 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 | 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 | 33 + 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/tic30-dis.c | 2 +- 63 files changed, 6327 insertions(+), 5439 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