This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch users/hjl/linux/master in repository binutils-gdb.
from d2e723322b1 Merge remote-tracking branch 'origin/master' into users/hjl [...] adds ac4bf06ca22 Fix seg-fault in strip when copying a file containing corru [...] adds aef397a1548 Non-contiguous memory regions support: Fix testcases after [...] adds a9933ccf467 [gdb/testsuite] Add test-case gdb.dwarf2/break-inline-psymtab.exp adds cdf236890ce Automatic date update in version.in adds 645ba68105e setup_archive parameter mismatch adds b966f55ffa5 Invalid read in process_netbsd_elf_note adds 1cb7d8b1afc readelf leak in process_archive adds 81a65eb338c Don't use bfd.h in binutils/elfcomm.c adds effc14f54c3 Additional c99 elfxx-riscv.c fix adds d8c8b84859d [gdb/testsuite] Fix gdb.opt/inline-locals.exp KFAILs adds 724fd9ba432 gdb: Restructure the completion_tracker class adds 19a2740f7f2 gdb: Remove C++ symbol aliases from completion list adds 6b8c53f2f1c gdb/testsuite/fortran: Add mixed language stack test adds cada5fc921e gdb: Handle W and X remote packets without giving a warning adds ef3df11042c readelf.c: Use unsigned long to iterate over num_syms adds fcc7376e0a4 Avoid get_ptrace_pid() usage on NetBSD in x86-bsd-nat.c new 87839affcf0 Merge remote-tracking branch 'origin/master' into users/hjl [...] new 8a6751e5151 Update readelf: Consolidate --syms --use-dynamic with --dyn-syms new 3bf6bd2794b Skip binutils-pr12639.patch adds 6a541707f34 Fix assertion failure in the BFD library when called to par [...] adds 2d07da271ee [AArch64] When unavailable, fetch VG from ptrace. adds 3734bec8336 Include: Sync lto-symtab.h and plugin-api.h with GCC adds f3a08f77787 Fix discrepancies in nm's --line-number output by adding su [...] new 35b8b39f349 Merge remote-tracking branch 'origin/master' into users/hjl [...] new bcfcf1921dd Apply plugin: Use LDPT_ADD_SYMBOLS_V2 to get symbol type new 72e28e331cd Update 0001-Add-lto-and-none-lto-input-support-for-ld-r.patch
The 6 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/ChangeLog | 28 + bfd/dwarf2.c | 86 +- bfd/elf.c | 140 +- bfd/elfxx-riscv.c | 3 +- bfd/version.h | 2 +- binutils/ChangeLog | 34 + binutils/elfcomm.c | 56 +- binutils/elfcomm.h | 6 +- binutils/readelf.c | 190 +- binutils/testsuite/binutils-all/dw4.s | 1974 ++++++++++++++++++++ binutils/testsuite/binutils-all/nm.exp | 47 + gdb/ChangeLog | 60 + gdb/completer.c | 209 ++- gdb/completer.h | 45 +- gdb/nat/aarch64-sve-linux-ptrace.c | 21 +- gdb/remote.c | 46 +- gdb/symtab.c | 21 + gdb/testsuite/ChangeLog | 28 + gdb/testsuite/gdb.dwarf2/break-inline-psymtab-2.c | 33 + gdb/testsuite/gdb.dwarf2/break-inline-psymtab.c | 24 + gdb/testsuite/gdb.dwarf2/break-inline-psymtab.exp | 36 + gdb/testsuite/gdb.fortran/mixed-lang-stack.c | 37 + gdb/testsuite/gdb.fortran/mixed-lang-stack.cpp | 85 + gdb/testsuite/gdb.fortran/mixed-lang-stack.exp | 163 ++ gdb/testsuite/gdb.fortran/mixed-lang-stack.f90 | 116 ++ .../gdb.linespec/cp-completion-aliases.cc | 73 + .../gdb.linespec/cp-completion-aliases.exp | 54 + gdb/testsuite/gdb.opt/inline-locals.exp | 26 +- gdb/testsuite/gdb.server/exit-multiple-threads.c | 202 ++ gdb/testsuite/gdb.server/exit-multiple-threads.exp | 136 ++ gdb/x86-bsd-nat.c | 43 +- include/ChangeLog | 13 + include/lto-symtab.h | 13 + include/plugin-api.h | 32 +- ld/ChangeLog | 5 + ld/testsuite/ld-arm/non-contiguous-arm4.d | 2 +- ld/testsuite/ld-powerpc/non-contiguous-powerpc.d | 2 +- ...d-lto-and-none-lto-input-support-for-ld-r.patch | 251 +-- ...se-LDPT_ADD_SYMBOLS_V2-to-get-symbol-type.patch | 156 ++ ...nsolidate-syms-use-dynamic-with-dyn-syms.patch} | 408 +++- patches/README | 4 +- 41 files changed, 4444 insertions(+), 466 deletions(-) create mode 100644 binutils/testsuite/binutils-all/dw4.s create mode 100644 gdb/testsuite/gdb.dwarf2/break-inline-psymtab-2.c create mode 100644 gdb/testsuite/gdb.dwarf2/break-inline-psymtab.c create mode 100644 gdb/testsuite/gdb.dwarf2/break-inline-psymtab.exp create mode 100644 gdb/testsuite/gdb.fortran/mixed-lang-stack.c create mode 100644 gdb/testsuite/gdb.fortran/mixed-lang-stack.cpp create mode 100644 gdb/testsuite/gdb.fortran/mixed-lang-stack.exp create mode 100644 gdb/testsuite/gdb.fortran/mixed-lang-stack.f90 create mode 100644 gdb/testsuite/gdb.linespec/cp-completion-aliases.cc create mode 100644 gdb/testsuite/gdb.linespec/cp-completion-aliases.exp create mode 100644 gdb/testsuite/gdb.server/exit-multiple-threads.c create mode 100644 gdb/testsuite/gdb.server/exit-multiple-threads.exp create mode 100644 patches/0001-plugin-Use-LDPT_ADD_SYMBOLS_V2-to-get-symbol-type.patch rename patches/{0001-readelf-Compute-dynamic-symbol-table-size-from-hash-.patch => [...]