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-next-allmodconfig in repository toolchain/ci/binutils-gdb.
from 2e9276136b [gdb] Mention CU offset for <artifical> if verbose adds a6740d29a0 Automatic date update in version.in adds e1f85e11f5 z80 comments in archures.c adds 821948744f gas -Z flag adds 33176d912a gas: error for section type, attr, or entsize change adds 5f0e2eb79e GDB/testsuite: Fix a catastrophic step-over-no-symbols.exp failure adds 44f6938ead [gdb/testsuite] Skip multi-target.exp without gdbserver adds 85f0dd3ce8 [gdb] Fix -Wstrict-null-sentinel warnings adds 678d457fb7 Fix potential problem with binutils debuginfod tests. adds 46471187e4 More debuginfod tests fixes. new 3a5d12fbb4 Allow objcopy's --set-section-flags options to add or remove [...] new 4b5aaf5f69 x86: Accept Intel64 only instruction by default new 4934a27c8c [binutils][arm] arm support for ARMv8.m Custom Datapath Extension new 5aae9ae97f [binutils][arm] Implement Custom Datapath Extensions for MVE
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 | 5 + bfd/archures.c | 28 +- bfd/bfd-in2.h | 30 +- bfd/version.h | 2 +- binutils/ChangeLog | 14 + binutils/doc/binutils.texi | 8 +- binutils/objcopy.c | 3 +- binutils/testsuite/binutils-all/debuginfod.exp | 45 +- gas/ChangeLog | 109 + gas/config/obj-elf.c | 21 +- gas/config/tc-arm.c | 577 +- gas/config/tc-i386.c | 40 +- gas/doc/c-arm.texi | 8 + gas/doc/c-i386.texi | 3 +- gas/output-file.c | 2 +- gas/testsuite/gas/arm/cde-missing-fp.d | 5 + gas/testsuite/gas/arm/cde-missing-fp.l | 148 + gas/testsuite/gas/arm/cde-missing-mve.d | 7 + gas/testsuite/gas/arm/cde-missing-mve.l | 57 + gas/testsuite/gas/arm/cde-mve-or-neon.d | 99 + gas/testsuite/gas/arm/cde-mve-or-neon.s | 96 + gas/testsuite/gas/arm/cde-mve.s | 62 + gas/testsuite/gas/arm/cde-scalar.d | 117 + gas/testsuite/gas/arm/cde-scalar.s | 206 + gas/testsuite/gas/arm/cde-warnings.d | 5 + gas/testsuite/gas/arm/cde-warnings.l | 355 + gas/testsuite/gas/arm/cde-warnings.s | 604 ++ gas/testsuite/gas/arm/cde.d | 266 + gas/testsuite/gas/arm/cde.s | 36 + gas/testsuite/gas/elf/elf.exp | 2 +- gas/testsuite/gas/elf/section5.l | 9 +- gas/testsuite/gas/i386/i386.exp | 3 +- gas/testsuite/gas/i386/x86-64-sysenter.d | 5 + gas/write.c | 2 +- gdb/ChangeLog | 5 + gdb/dwarf2/read.c | 3 +- gdb/testsuite/ChangeLog | 9 + gdb/testsuite/gdb.base/step-over-no-symbols.exp | 4 +- gdb/testsuite/gdb.multi/multi-target.exp | 4 + gdbsupport/ChangeLog | 4 + gdbsupport/environ.c | 2 +- include/ChangeLog | 13 + include/opcode/arm.h | 9 + opcodes/ChangeLog | 35 + opcodes/arm-dis.c | 250 +- opcodes/i386-gen.c | 3 +- opcodes/i386-opc.h | 17 +- opcodes/i386-opc.tbl | 26 +- opcodes/i386-tbl.h | 7858 +++++++++++------------ 49 files changed, 7198 insertions(+), 4023 deletions(-) create mode 100644 gas/testsuite/gas/arm/cde-missing-fp.d create mode 100644 gas/testsuite/gas/arm/cde-missing-fp.l create mode 100644 gas/testsuite/gas/arm/cde-missing-mve.d create mode 100644 gas/testsuite/gas/arm/cde-missing-mve.l create mode 100644 gas/testsuite/gas/arm/cde-mve-or-neon.d create mode 100644 gas/testsuite/gas/arm/cde-mve-or-neon.s create mode 100644 gas/testsuite/gas/arm/cde-mve.s create mode 100644 gas/testsuite/gas/arm/cde-scalar.d create mode 100644 gas/testsuite/gas/arm/cde-scalar.s create mode 100644 gas/testsuite/gas/arm/cde-warnings.d create mode 100644 gas/testsuite/gas/arm/cde-warnings.l create mode 100644 gas/testsuite/gas/arm/cde-warnings.s create mode 100644 gas/testsuite/gas/arm/cde.d create mode 100644 gas/testsuite/gas/arm/cde.s create mode 100644 gas/testsuite/gas/i386/x86-64-sysenter.d