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-allnoconfig 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 new 9a93502fa8 Fix testsuite hangs when gdb_test_multiple body errors out new 53b2f36bf6 AArch64: Fix disassembler bug with out-of-order sections new 5145776164 AArch64: Fix AArch64 disassembler mapping symbol search new 60df3720d7 AArch64: Have -D override mapping symbol as documented. new 796d6298bb Arm: Fix Arm disassembler mapping symbol search.
The 5 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/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 | 118 ++++++++++ gdb/ada-lang.c | 11 +- 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/objfiles.c | 6 - gdb/objfiles.h | 2 +- gdb/p-valprint.c | 3 +- gdb/parse.c | 34 ++- gdb/parser-defs.h | 23 +- 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/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 +++++++++------------ 69 files changed, 896 insertions(+), 352 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