This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_native_check_binutils/master-arm in repository toolchain/ci/binutils-gdb.
from 692e92c5af Automatic date update in version.in adds 1add37b567 Add support for readline 8.2 adds a58b0053f4 z80 assembler: Fix new unexpected overflow warning in v2.37 adds 9170b70c41 gdb/testsuite: Installed-GDB testing & data-directory adds daaf7acf47 [gdb/testsuite] test a function call by hand from pretty printer adds 4b19214f79 gdb/testsuite: reformat gdb.python/pretty-print-call-by-hand.py adds 46fb6d5aa2 x86: don't suppress overflow diagnostics in x32 mode adds 30cbd32aec Reduce O(n2) performance overhead when parsing DWARF unit in [...] adds 6f0dabd46d gdb/x86: handle stap probe arguments in xmm registers adds f55649cc9b gdb: re-generate config.in adds 04f0c03a22 gdbserver: Fix incorrect assertion adds 4414150d33 gdbserver: Fixup previous patch adds d37e084783 Watchpoint followed by catchpoint misreports watchpoint (PR [...] adds 39f53acb41 gdb: Add soname to build-id mapping for core files adds b91f93a02c PR gdb/27570: missing support for debuginfod in core_target: [...] adds fcb335b0a2 gdb: Add missing #include in solib.h adds 389eb00afc Automatic date update in version.in adds 6c924cf21c Install gprofng libraries under $(pkglibdir) new 6c111a4ec2 Fix some stale header names from dwarf files
The 1 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 | 7 ++ bfd/dwarf2.c | 93 +++++++++------ bfd/version.h | 2 +- gas/ChangeLog | 8 ++ gas/config/tc-i386.c | 3 +- gas/config/tc-z80.c | 10 +- gas/testsuite/gas/i386/ilp32/reloc64.l | 13 +++ gas/testsuite/gas/i386/ilp32/reloc64.s | 15 +++ gas/testsuite/gas/z80/pr28791.d | 16 +++ gas/testsuite/gas/z80/pr28791.s | 7 ++ gdb/ax-gdb.c | 19 +++ gdb/breakpoint.c | 15 +++ gdb/breakpoint.h | 25 +++- gdb/completer.c | 4 +- gdb/config.in | 3 - gdb/corelow.c | 39 +++++++ gdb/debuginfod-support.c | 51 +++++++++ gdb/debuginfod-support.h | 17 +++ gdb/dwarf2/expr.h | 2 +- gdb/dwarf2/frame.c | 4 +- gdb/dwarf2/loc.c | 12 +- gdb/dwarf2/loc.h | 2 +- gdb/dwarf2/read.c | 2 +- gdb/eval.c | 16 +++ gdb/expop.h | 31 +++++ gdb/gcore.in | 2 +- gdb/infrun.c | 24 ++-- gdb/linux-tdep.c | 24 +++- gdb/solib.c | 119 +++++++++++++++++++ gdb/solib.h | 23 +++- gdb/stap-probe.c | 15 +++ gdb/std-operator.def | 9 ++ gdb/testsuite/README | 13 +++ gdb/testsuite/gdb.base/stap-probe.c | 22 ++++ gdb/testsuite/gdb.base/stap-probe.exp | 125 ++++++++++++++++++++ gdb/testsuite/gdb.base/watch-before-fork.c | 29 +++++ gdb/testsuite/gdb.base/watch-before-fork.exp | 99 ++++++++++++++++ .../gdb.debuginfod/fetch_src_and_symbols.exp | 22 ++++ .../gdb.python/pretty-print-call-by-hand.c | 53 +++++++++ .../gdb.python/pretty-print-call-by-hand.exp | 127 +++++++++++++++++++++ .../gdb.python/pretty-print-call-by-hand.py | 45 ++++++++ gdb/testsuite/lib/gdb.exp | 44 ++++++- gdbserver/remote-utils.cc | 11 +- gprofng/Makefile.am | 4 +- gprofng/Makefile.in | 4 +- gprofng/configure | 7 +- gprofng/configure.ac | 1 - gprofng/doc/Makefile.in | 2 +- gprofng/gp-display-html/Makefile.in | 2 +- gprofng/libcollector/Makefile.am | 6 +- gprofng/libcollector/Makefile.in | 91 ++++++++------- gprofng/src/Makefile.am | 6 +- gprofng/src/Makefile.in | 78 +++++++------ gprofng/src/envsets.cc | 6 +- 54 files changed, 1250 insertions(+), 179 deletions(-) create mode 100644 gas/testsuite/gas/z80/pr28791.d create mode 100644 gas/testsuite/gas/z80/pr28791.s create mode 100644 gdb/testsuite/gdb.base/watch-before-fork.c create mode 100644 gdb/testsuite/gdb.base/watch-before-fork.exp create mode 100644 gdb/testsuite/gdb.python/pretty-print-call-by-hand.c create mode 100644 gdb/testsuite/gdb.python/pretty-print-call-by-hand.exp create mode 100644 gdb/testsuite/gdb.python/pretty-print-call-by-hand.py