This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu/gnu-master-aarch64-check_binutils in repository toolchain/ci/binutils-gdb.
from 467f8eb233 gdb/fortran: test case modified to suit the clang behavior. adds e683cb4120 arm: Fix bugs with MVE vmov from two GPRs to vector lanes adds 413b49c2b6 gdb: move cmd_list_element::prefixname to cli/cli-decode.c adds ecd0a6b35d gdb: don't handle old == nullptr in add_alias_cmd adds 14b42fc4a0 gdb: rename cmd_list_element::prefixlist to subcommands adds 9985872497 gdb: rename cmd_list_element::cmd_pointer to target adds 1be99b11f8 gdb: add cmd_list_element::is_alias adds 3d0b356410 gdb: add cmd_list_element::is_prefix adds 034dce7a47 gdb: add cmd_list_element::is_command_class_help adds 91e159e93b gdb: add pyproject.toml adds 5277208d32 gdb/testsuite: rename .py.in files to .py adds 16e0020bfc Replace sort_tu_by_abbrev_offset with operator< adds 473ab96443 Change how dwarf2_per_cu_data is deleted adds baea2f9d52 Fix buffer underflow in add_path adds 5917321695 Fix ubsan build adds 9e541c7918 Avoid crash with GCC trunk adds c1c0a7e1f3 gdb: additional settings for emacs in .dir-locals.el adds 8ae78a440e Move dwarf2_cu to new header file adds 839118f920 Move some dwarf2_cu methods to new file adds 347212b819 Change dwarf2_cu marking to use methods adds cd53fa40d4 Rename dwarf2/comp-unit.h adds 549f123c68 Automatic date update in version.in adds 113bb7618a RISC-V: PR27814, Objdump crashes when disassembling a non-EL [...] adds 19fa7881a9 config: delete unused sim macros adds 9cc11ab5bf sim: depend on gnulib adds 75933ce3d9 Automatic date update in version.in adds 9d9e2a340b PR27879, stack-buffer-overflow on sysdump adds 1b3892bedc PR27884, skip_attr_bytes: Assertion (data) <= (end) failed
No new revisions were added by this update.
Summary of changes: ChangeLog | 5 + Makefile.def | 1 + Makefile.in | 1 + bfd/version.h | 2 +- binutils/ChangeLog | 15 + binutils/dwarf.c | 42 +- binutils/sysdump.c | 13 +- config/ChangeLog | 4 + config/acinclude.m4 | 102 ----- gas/ChangeLog | 8 + gas/config/tc-arm.c | 4 +- gas/testsuite/gas/arm/mve-vmov-3.d | 169 ++++++++ gas/testsuite/gas/arm/mve-vmov-3.s | 160 +++++++ gas/testsuite/gas/arm/mve-vmov-bad-2.l | 2 +- gdb/.dir-locals.el | 5 +- gdb/ChangeLog | 122 ++++++ gdb/Makefile.in | 4 +- gdb/auto-load.c | 2 +- gdb/cli/cli-cmds.c | 6 +- gdb/cli/cli-decode.c | 217 +++++----- gdb/cli/cli-decode.h | 34 +- gdb/cli/cli-script.c | 30 +- gdb/cli/cli-setshow.c | 12 +- gdb/command.h | 5 +- gdb/completer.c | 8 +- gdb/dwarf2/{comp-unit.c => comp-unit-head.c} | 6 +- gdb/dwarf2/{comp-unit.h => comp-unit-head.h} | 0 gdb/dwarf2/cu.c | 139 +++++++ gdb/dwarf2/cu.h | 288 +++++++++++++ gdb/dwarf2/line-header.c | 2 +- gdb/dwarf2/loc.c | 3 + gdb/dwarf2/read.c | 458 ++------------------- gdb/dwarf2/read.h | 20 +- gdb/gdb-gdb.py.in | 160 +++---- gdb/guile/scm-cmd.c | 4 +- gdb/nat/linux-osdata.c | 6 +- gdb/pyproject.toml | 2 + gdb/python/py-cmd.c | 6 +- gdb/source.c | 1 + gdb/testsuite/ChangeLog | 12 + ...framefilter-gdb.py.in => py-framefilter-gdb.py} | 22 +- ...-gdb.py.in => py-framefilter-invalidarg-gdb.py} | 22 +- .../gdb.python/py-framefilter-invalidarg.exp | 2 +- gdb/testsuite/gdb.python/py-framefilter.exp | 4 +- gdb/top.c | 6 +- gdb/unittests/command-def-selftests.c | 8 +- gdbserver/.dir-locals.el | 5 +- gdbserver/ChangeLog | 5 + gdbsupport/.dir-locals.el | 5 +- gdbsupport/ChangeLog | 5 + opcodes/ChangeLog | 15 + opcodes/arm-dis.c | 7 +- opcodes/riscv-dis.c | 24 +- 53 files changed, 1365 insertions(+), 845 deletions(-) create mode 100644 gas/testsuite/gas/arm/mve-vmov-3.d create mode 100644 gas/testsuite/gas/arm/mve-vmov-3.s rename gdb/dwarf2/{comp-unit.c => comp-unit-head.c} (98%) rename gdb/dwarf2/{comp-unit.h => comp-unit-head.h} (100%) create mode 100644 gdb/dwarf2/cu.c create mode 100644 gdb/dwarf2/cu.h create mode 100644 gdb/pyproject.toml rename gdb/testsuite/gdb.python/{py-framefilter-gdb.py.in => py-framefilter-gdb.py} (71%) rename gdb/testsuite/gdb.python/{py-framefilter-invalidarg-gdb.py.in => py-framefi [...]