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-stable-allyesconfig in repository toolchain/ci/binutils-gdb.
from 59c283728f AArch64: Read pauth section from core files adds c90939d2d0 Automatic date update in version.in adds 9bb9b2f9d6 Use scoped_restore_current_language in two places adds b366c208ee Include bcache.h from objfiles.h adds 7ad417dd21 Have parser reset the innermost block tracker adds 83bfc77ff5 Automatic date update in version.in adds 5783e150b2 (re-)fix the regcache leaks when detaching from an executable. adds 258876ee34 Automatic date update in version.in adds 582942f456 More block constification adds a930ebcdf9 Don't include symtab.h from expression.h adds 6640a367bf Remove null_block_symbol adds 9a93502fa8 Fix testsuite hangs when gdb_test_multiple body errors out adds 53b2f36bf6 AArch64: Fix disassembler bug with out-of-order sections adds 5145776164 AArch64: Fix AArch64 disassembler mapping symbol search adds 60df3720d7 AArch64: Have -D override mapping symbol as documented. adds 796d6298bb Arm: Fix Arm disassembler mapping symbol search. adds 0f83012ea0 Add linux_get_hwcap adds d45963c2b2 Fix s390 build adds 79e7ae11c7 Clean up some comments in minsyms.c adds 81a24d04df Note support for TLS variables on FreeBSD.
No new revisions were added by this update.
Summary of changes: bfd/version.h | 2 +- binutils/ChangeLog | 30 +++ binutils/objdump.c | 1 + .../testsuite/binutils-all/aarch64/in-order-all.d | 43 ++++ binutils/testsuite/binutils-all/aarch64/in-order.d | 28 +++ .../binutils-all/aarch64/out-of-order-all.d | 43 ++++ .../testsuite/binutils-all/aarch64/out-of-order.T | 14 ++ .../testsuite/binutils-all/aarch64/out-of-order.d | 27 +++ .../testsuite/binutils-all/aarch64/out-of-order.s | 28 +++ binutils/testsuite/binutils-all/arm/in-order-all.d | 50 +++++ binutils/testsuite/binutils-all/arm/in-order.d | 28 +++ binutils/testsuite/binutils-all/arm/objdump.exp | 14 ++ .../testsuite/binutils-all/arm/out-of-order-all.d | 50 +++++ binutils/testsuite/binutils-all/arm/out-of-order.T | 14 ++ binutils/testsuite/binutils-all/arm/out-of-order.d | 27 +++ binutils/testsuite/binutils-all/arm/out-of-order.s | 29 +++ gdb/ChangeLog | 161 +++++++++++++ gdb/NEWS | 5 + gdb/aarch64-linux-nat.c | 8 +- gdb/aarch64-linux-tdep.c | 16 +- gdb/aarch64-linux-tdep.h | 3 - gdb/ada-lang.c | 11 +- gdb/arm-linux-nat.c | 7 +- gdb/arm-linux-tdep.c | 5 +- gdb/block.c | 8 +- gdb/block.h | 2 +- gdb/breakpoint.c | 3 - gdb/c-exp.y | 4 +- gdb/c-valprint.c | 3 +- gdb/coffread.c | 2 +- gdb/cp-namespace.c | 26 +-- gdb/cp-support.c | 2 +- gdb/cp-support.h | 2 +- gdb/d-exp.y | 1 - gdb/d-namespace.c | 15 +- gdb/dwarf2read.c | 6 +- gdb/eval.c | 2 +- gdb/expression.h | 22 +- gdb/f-exp.y | 1 - gdb/gdbtypes.c | 6 +- gdb/inline-frame.c | 5 +- gdb/linespec.c | 14 +- gdb/linux-tdep.c | 22 ++ gdb/linux-tdep.h | 8 + gdb/minsyms.c | 49 +--- gdb/objfiles.c | 6 - gdb/objfiles.h | 2 +- gdb/p-valprint.c | 3 +- gdb/parse.c | 34 ++- gdb/parser-defs.h | 23 +- gdb/ppc-linux-nat.c | 39 +--- gdb/ppc-linux-tdep.c | 5 +- gdb/printcmd.c | 2 - gdb/psymtab.c | 12 +- gdb/python/py-framefilter.c | 6 +- gdb/python/py-symtab.c | 4 +- gdb/rust-lang.c | 2 +- gdb/s390-linux-nat.c | 4 +- gdb/s390-linux-tdep.c | 3 +- gdb/solib-darwin.c | 2 +- gdb/solib-spu.c | 2 +- gdb/solib-svr4.c | 2 +- gdb/solib.c | 2 +- gdb/spu-tdep.c | 2 +- gdb/symfile-debug.c | 2 +- gdb/symfile.c | 6 - gdb/symfile.h | 2 +- gdb/symmisc.c | 14 +- gdb/symtab.c | 43 ++-- gdb/symtab.h | 4 - gdb/target.c | 14 +- gdb/testsuite/ChangeLog | 5 + gdb/testsuite/lib/gdb.exp | 23 +- gdb/varobj.c | 6 +- include/ChangeLog | 4 + include/dis-asm.h | 6 + ld/ChangeLog | 5 + ld/testsuite/ld-arm/jump-reloc-veneers-cond-long.d | 2 +- ld/testsuite/ld-arm/jump-reloc-veneers-long.d | 5 +- opcodes/ChangeLog | 21 ++ opcodes/aarch64-dis.c | 52 ++++- opcodes/arm-dis.c | 249 +++++++++------------ 82 files changed, 1000 insertions(+), 465 deletions(-) create mode 100644 binutils/testsuite/binutils-all/aarch64/in-order-all.d create mode 100644 binutils/testsuite/binutils-all/aarch64/in-order.d create mode 100644 binutils/testsuite/binutils-all/aarch64/out-of-order-all.d create mode 100644 binutils/testsuite/binutils-all/aarch64/out-of-order.T create mode 100644 binutils/testsuite/binutils-all/aarch64/out-of-order.d create mode 100644 binutils/testsuite/binutils-all/aarch64/out-of-order.s create mode 100644 binutils/testsuite/binutils-all/arm/in-order-all.d create mode 100644 binutils/testsuite/binutils-all/arm/in-order.d create mode 100644 binutils/testsuite/binutils-all/arm/out-of-order-all.d create mode 100644 binutils/testsuite/binutils-all/arm/out-of-order.T create mode 100644 binutils/testsuite/binutils-all/arm/out-of-order.d create mode 100644 binutils/testsuite/binutils-all/arm/out-of-order.s