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-allmodconfig in repository toolchain/ci/binutils-gdb.
from 307f2595dd Linker: If the type is pie the results should be an executab [...] adds 9fcff41582 Automatic date update in version.in adds c4694f172b Enable support to Intel Keylocker instructions adds ebe824f5dc Remove some manual memory management from compile interface adds 0dbf6ee6a0 Use new/delete for do_module_cleanup adds e947a8482a Introduce and use compile_module_up adds e616f60a6b Transfer module ownership to do_module_cleanup adds 92677124d9 Simplify compile_module cleanup adds bac51ab78d Avoid manual memory management of argv arrays in gdb/compile adds 20a5fcbd5b Handle bit offset and bit size in base types adds afdcafe891 CSKY: Add objdump option -M abi-names. adds c94053440e PR26655, Power10 libstdc++.so R_PPC64_NONE dynamic relocs adds 294338867c PR26656, power10 libstdc++.so segfault in __cxxabiv1::__cxa_throw adds a993d270f8 [GOLD] PowerPC64 __tls_get_addr_opt stub adds 7469ddd78f Automatic date update in version.in adds 81d54bb7ae Add support for Intel TDX instructions. adds f3034e25fa arm: Add support for Neoverse N2 CPU adds a2ab58313a Document that the lower case 'c' character in nm's output is [...] adds 011a045a6b csky/opcodes: enclose if body in curly braces adds 9e980ddcef aarch64: Add support for Neoverse V1 CPU adds 6eee0315f6 arm: Add support for Neoverse V1 CPU
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 30 + bfd/elf64-ppc.c | 451 +- bfd/elf64-ppc.h | 3 +- bfd/version.h | 2 +- binutils/ChangeLog | 6 + binutils/doc/binutils.texi | 3 + gas/ChangeLog | 75 + gas/NEWS | 3 + gas/config/tc-aarch64.c | 8 + gas/config/tc-arm.c | 8 + gas/config/tc-csky.c | 641 +- gas/config/tc-i386.c | 13 +- gas/doc/c-aarch64.texi | 1 + gas/doc/c-arm.texi | 2 + gas/doc/c-i386.texi | 8 + gas/testsuite/gas/csky/all.d | 2 +- gas/testsuite/gas/csky/cskyv2_all.d | 36 +- gas/testsuite/gas/csky/cskyv2_all.s | 24 +- gas/testsuite/gas/csky/trust.d | 9 +- gas/testsuite/gas/csky/trust.s | 1 - gas/testsuite/gas/i386/i386.exp | 8 + gas/testsuite/gas/i386/keylocker-intel.d | 34 + gas/testsuite/gas/i386/keylocker.d | 34 + gas/testsuite/gas/i386/keylocker.s | 33 + gas/testsuite/gas/i386/property-10.d | 9 + gas/testsuite/gas/i386/property-10.s | 2 + gas/testsuite/gas/i386/tdx.d | 12 + gas/testsuite/gas/i386/tdx.s | 5 + gas/testsuite/gas/i386/x86-64-keylocker-intel.d | 34 + gas/testsuite/gas/i386/x86-64-keylocker.d | 34 + gas/testsuite/gas/i386/x86-64-keylocker.s | 33 + gas/testsuite/gas/i386/x86-64-property-10.d | 10 + gas/testsuite/gas/i386/x86-64-tdx.d | 15 + gas/testsuite/gas/i386/x86-64-tdx.s | 8 + gdb/ChangeLog | 91 + gdb/compile/compile-c-types.c | 4 +- gdb/compile/compile-cplus-types.c | 39 +- gdb/compile/compile-object-load.c | 108 +- gdb/compile/compile-object-load.h | 20 +- gdb/compile/compile-object-run.c | 78 +- gdb/compile/compile-object-run.h | 2 +- gdb/compile/compile.c | 82 +- gdb/dwarf2/read.c | 20 + gdb/gdbtypes.c | 24 + gdb/gdbtypes.h | 43 +- gdb/printcmd.c | 16 +- gdb/testsuite/ChangeLog | 5 + gdb/testsuite/gdb.dwarf2/intbits.c | 48 + gdb/testsuite/gdb.dwarf2/intbits.exp | 201 + gdb/utils.h | 43 + gdb/value.c | 37 +- gold/ChangeLog | 5 + gold/powerpc.cc | 31 +- ld/ChangeLog | 7 + ld/emultempl/ppc64elf.em | 18 +- opcodes/ChangeLog | 78 + opcodes/csky-dis.c | 150 +- opcodes/csky-opc.h | 529 +- opcodes/i386-dis.c | 172 +- opcodes/i386-gen.c | 15 + opcodes/i386-init.h | 448 +- opcodes/i386-opc.h | 9 + opcodes/i386-opc.tbl | 25 + opcodes/i386-tbl.h | 8288 ++++++++++++----------- 64 files changed, 6970 insertions(+), 5263 deletions(-) create mode 100644 gas/testsuite/gas/i386/keylocker-intel.d create mode 100644 gas/testsuite/gas/i386/keylocker.d create mode 100644 gas/testsuite/gas/i386/keylocker.s create mode 100644 gas/testsuite/gas/i386/property-10.d create mode 100644 gas/testsuite/gas/i386/property-10.s create mode 100644 gas/testsuite/gas/i386/tdx.d create mode 100644 gas/testsuite/gas/i386/tdx.s create mode 100644 gas/testsuite/gas/i386/x86-64-keylocker-intel.d create mode 100644 gas/testsuite/gas/i386/x86-64-keylocker.d create mode 100644 gas/testsuite/gas/i386/x86-64-keylocker.s create mode 100644 gas/testsuite/gas/i386/x86-64-property-10.d create mode 100644 gas/testsuite/gas/i386/x86-64-tdx.d create mode 100644 gas/testsuite/gas/i386/x86-64-tdx.s create mode 100644 gdb/testsuite/gdb.dwarf2/intbits.c create mode 100644 gdb/testsuite/gdb.dwarf2/intbits.exp