This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_cross/gnu-master-aarch64-build_cross in repository toolchain/ci/binutils-gdb.
from dd80d75040 gdb: use std::string instead of a fixed size buffer adds 665af52ec2 Fix aarch64-linux-hw-point.c build problem adds 268c77c1b0 Add comment regarding include order of <sys/ptrace.h> and <a [...] adds aa659cfad6 [gdb/symtab] Handle DW_AT_decl_file with form DW_FORM_implic [...] adds 40b02646ec Re: Use make_tempname file descriptor in smart_rename adds 39b0759693 Automatic date update in version.in adds bbaddd4bbe PR27441, inconsistency in weak definitions adds 170f4b23b6 gdb/fortran: add support for legacy .xor. operator adds faeb9f13c1 gdb/fortran: add support for ASSOCIATED builtin adds 68337b8be3 gdb/fortran: don't access non-existent type fields adds 3c27360bc4 ld: correct description of behavior for symbols redefined by script adds 30c80d8833 [gdb/symtab] Fix wrong unit_type Dwarf Error adds 2450ad54ce gdb/mi: Remove extra \n from tsv and and traceframe notifications adds d4ff3cbfdb gdb/testsuite: Add a missing -wrap in gdb_test_multiple adds e38332c286 Add initial support for .debug_sup sections. adds 64d38fdd99 Fix initial thread state of non-threaded remote targets adds dffdd8b51f gdb: relax assertion in target_mourn_inferior adds 0f977b7715 Add comment regarding include order of <sys/ptrace.h> and <a [...] adds 26b43ca6e6 Fix date in ChangeLog adds 06172a2c98 Automatic date update in version.in adds 8255cf421c libctf regen for NEWS adds bfece7562d Add PR27441 testcase adds cb51b708fd testsuite: note on use_gdb_stub usage adds 32e4f96cec Add support for the split DWARF forms. adds f821878623 testsuite: Remove extra \n from expected output of tsv notif [...] adds 0e12f6c802 Add support for decoding DWARF v5 DW_AT_addr_base tags. adds fe0171d248 Correct an error message in the ARM assembler. adds 7fe1b1388f nm: Add --quiet to suppress "no symbols" diagnostic
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 8 + bfd/elf-bfd.h | 2 + bfd/elflink.c | 11 +- bfd/version.h | 2 +- binutils/ChangeLog | 45 +++ binutils/NEWS | 6 + binutils/doc/binutils.texi | 5 + binutils/doc/debug.options.texi | 10 +- binutils/dwarf.c | 252 ++++++++++++++++- binutils/dwarf.h | 1 + binutils/nm.c | 18 +- binutils/readelf.c | 4 +- binutils/rename.c | 3 +- gas/ChangeLog | 8 + gas/config/tc-arm.c | 2 +- gas/testsuite/gas/arm/pr27411.d | 2 + gas/testsuite/gas/arm/pr27411.l | 6 + gas/testsuite/gas/arm/pr27411.s | 14 + gdb/ChangeLog | 79 ++++++ gdb/dwarf2/attribute.c | 8 + gdb/dwarf2/attribute.h | 27 +- gdb/dwarf2/read.c | 6 +- gdb/f-exp.y | 2 + gdb/f-lang.c | 326 +++++++++++++++++++--- gdb/mi/mi-interp.c | 8 +- gdb/nat/aarch64-linux-hw-point.c | 9 +- gdb/nat/aarch64-sve-linux-ptrace.h | 6 + gdb/remote.c | 13 +- gdb/std-operator.def | 1 + gdb/target.c | 2 +- gdb/testsuite/ChangeLog | 36 +++ gdb/testsuite/gdb.fortran/associated.exp | 87 ++++++ gdb/testsuite/gdb.fortran/associated.f90 | 97 +++++++ gdb/testsuite/gdb.fortran/call-no-debug-func.f90 | 29 ++ gdb/testsuite/gdb.fortran/call-no-debug-prog.f90 | 35 +++ gdb/testsuite/gdb.fortran/call-no-debug.exp | 102 +++++++ gdb/testsuite/gdb.fortran/dot-ops.exp | 8 + gdb/testsuite/gdb.server/stop-reply-no-thread.exp | 10 + gdb/testsuite/gdb.trace/mi-tsv-changed.exp | 10 +- gdb/testsuite/lib/gdb.exp | 3 + ld/ChangeLog | 13 + ld/ld.texi | 4 +- ld/testsuite/ld-plugin/lto.exp | 12 + ld/testsuite/ld-plugin/pr27441a.c | 2 + ld/testsuite/ld-plugin/pr27441b.c | 1 + ld/testsuite/ld-plugin/pr27441c.c | 8 + ld/testsuite/ld-plugin/pr27441c.d | 4 + libctf/ChangeLog | 4 + libctf/Makefile.in | 2 +- 49 files changed, 1275 insertions(+), 78 deletions(-) create mode 100644 gas/testsuite/gas/arm/pr27411.d create mode 100644 gas/testsuite/gas/arm/pr27411.l create mode 100644 gas/testsuite/gas/arm/pr27411.s create mode 100644 gdb/testsuite/gdb.fortran/associated.exp create mode 100644 gdb/testsuite/gdb.fortran/associated.f90 create mode 100644 gdb/testsuite/gdb.fortran/call-no-debug-func.f90 create mode 100644 gdb/testsuite/gdb.fortran/call-no-debug-prog.f90 create mode 100644 gdb/testsuite/gdb.fortran/call-no-debug.exp create mode 100644 ld/testsuite/ld-plugin/pr27441a.c create mode 100644 ld/testsuite/ld-plugin/pr27441b.c create mode 100644 ld/testsuite/ld-plugin/pr27441c.c create mode 100644 ld/testsuite/ld-plugin/pr27441c.d