This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk_tk1/llvm-master-arm-spec2k6-Os in repository toolchain/ci/binutils-gdb.
from 168f8c6ba0 Two minor changes in ctfread.c adds 7568c93bf9 AArch64: Fix cfinv disassembly issues adds e3696f67ab Replace deprecated tcl case statements with switch statements adds bc31405ebb x86-64: Properly encode and decode movsxd adds 086b06f3c9 Remove cpu-plugin.c adds 82ef9cad78 Fix objcopy --merge-notes dependency on qsort implementation [...] adds 16b10d6e61 Harden gdb.base/step-over-syscall.exp adds c35d018b1a RISC-V: Fix gdbserver problem with handling arch strings. adds aeb87a633c Automatic date update in version.in adds 738174e17e Don't report symbol lookup failure in first phase of linking adds 55be8fd0d2 Improve warning message from debuginfod support in readelf. adds a2236a0844 Fix library segment-address for 64bit values adds e667c15c48 Automatic date update in version.in adds ef8f08ca13 PR25477, ld 2.34 tries to load ${prefix}/etc/ld.so.conf
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 16 + bfd/Makefile.am | 2 - bfd/Makefile.in | 3 - bfd/archures.c | 2 - bfd/bfd-in2.h | 1 - bfd/cpu-plugin.c | 41 - bfd/cpu-riscv.c | 19 +- bfd/po/SRC-POTFILES.in | 1 - bfd/version.h | 2 +- binutils/ChangeLog | 15 + binutils/objcopy.c | 34 +- binutils/readelf.c | 37 +- binutils/testsuite/lib/binutils-common.exp | 18 +- gas/ChangeLog | 33 + gas/config/tc-i386.c | 4 +- gas/doc/c-i386.texi | 18 + gas/testsuite/gas/aarch64/armv8_4-a.d | 1 + gas/testsuite/gas/aarch64/armv8_4-a.s | 3 + gas/testsuite/gas/all/gas.exp | 122 +- gas/testsuite/gas/elf/elf.exp | 62 +- gas/testsuite/gas/i386/i386.exp | 6 + gas/testsuite/gas/i386/x86-64-movsxd-intel.d | 26 + .../gas/i386/x86-64-movsxd-intel64-intel.d | 26 + .../gas/i386/x86-64-movsxd-intel64-inval.l | 27 + .../gas/i386/x86-64-movsxd-intel64-inval.s | 14 + gas/testsuite/gas/i386/x86-64-movsxd-intel64.d | 25 + gas/testsuite/gas/i386/x86-64-movsxd-intel64.s | 20 + gas/testsuite/gas/i386/x86-64-movsxd-inval.l | 27 + gas/testsuite/gas/i386/x86-64-movsxd-inval.s | 14 + gas/testsuite/gas/i386/x86-64-movsxd.d | 25 + gas/testsuite/gas/i386/x86-64-movsxd.s | 20 + gas/testsuite/gas/macros/macros.exp | 24 +- gas/testsuite/lib/gas-defs.exp | 2 +- gdb/gdbserver/ChangeLog | 5 + gdb/gdbserver/server.c | 4 +- gdb/testsuite/ChangeLog | 10 + gdb/testsuite/gdb.base/step-over-syscall.exp | 134 +- ld/ChangeLog | 24 + ld/Makefile.am | 2 +- ld/Makefile.in | 2 +- ld/emultempl/elf.em | 2 +- ld/ldelf.c | 8 +- ld/ldelf.h | 2 +- ld/ldexp.c | 5 +- ld/testsuite/ld-elfvers/vers.exp | 6 +- ld/testsuite/ld-ifunc/ifunc.exp | 4 +- ld/testsuite/ld-unique/unique.exp | 4 +- opcodes/ChangeLog | 23 + opcodes/aarch64-asm-2.c | 174 +- opcodes/aarch64-dis-2.c | 2364 ++++++++++---------- opcodes/aarch64-opc-2.c | 16 +- opcodes/aarch64-tbl.h | 9 +- opcodes/i386-dis.c | 61 +- opcodes/i386-opc.tbl | 4 +- opcodes/i386-tbl.h | 34 +- 55 files changed, 2055 insertions(+), 1532 deletions(-) delete mode 100644 bfd/cpu-plugin.c create mode 100644 gas/testsuite/gas/i386/x86-64-movsxd-intel.d create mode 100644 gas/testsuite/gas/i386/x86-64-movsxd-intel64-intel.d create mode 100644 gas/testsuite/gas/i386/x86-64-movsxd-intel64-inval.l create mode 100644 gas/testsuite/gas/i386/x86-64-movsxd-intel64-inval.s create mode 100644 gas/testsuite/gas/i386/x86-64-movsxd-intel64.d create mode 100644 gas/testsuite/gas/i386/x86-64-movsxd-intel64.s create mode 100644 gas/testsuite/gas/i386/x86-64-movsxd-inval.l create mode 100644 gas/testsuite/gas/i386/x86-64-movsxd-inval.s create mode 100644 gas/testsuite/gas/i386/x86-64-movsxd.d create mode 100644 gas/testsuite/gas/i386/x86-64-movsxd.s