This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from 4024cf2b8d Fix setting-breakpoints regression on PPC64 (function descriptors) new a207cff2da Handle custom completion match prefix / LCD new a20714ff39 Make "break foo" find "A::foo", A::B::foo", etc. [C++ and wi [...] new bd69330db8 Breakpoints in symbols with ABI tags (PR c++/19436)
The 3 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: gdb/ChangeLog | 178 +++++++++ gdb/NEWS | 42 ++ gdb/ada-lang.c | 22 +- gdb/ax-gdb.c | 3 +- gdb/breakpoint.c | 32 +- gdb/c-lang.c | 2 +- gdb/completer.c | 61 ++- gdb/completer.h | 139 ++++++- gdb/cp-support.c | 218 ++++++++++- gdb/cp-support.h | 7 + gdb/doc/ChangeLog | 13 + gdb/doc/gdb.texinfo | 86 ++++- gdb/dwarf2read.c | 48 +++ gdb/guile/scm-breakpoint.c | 6 +- gdb/language.c | 11 +- gdb/language.h | 3 +- gdb/linespec.c | 56 ++- gdb/linespec.h | 12 +- gdb/location.c | 90 +++-- gdb/location.h | 38 +- gdb/mi/mi-cmd-break.c | 3 +- gdb/python/py-breakpoint.c | 3 +- gdb/python/python.c | 3 +- gdb/symtab.c | 11 +- gdb/symtab.h | 20 +- gdb/testsuite/ChangeLog | 24 ++ gdb/testsuite/gdb.base/langs.exp | 2 +- gdb/testsuite/gdb.cp/meth-typedefs.exp | 39 +- gdb/testsuite/gdb.cp/namespace.exp | 2 +- .../save-bp-qualified.cc} | 21 +- gdb/testsuite/gdb.cp/save-bp-qualified.exp | 74 ++++ gdb/testsuite/gdb.linespec/cpcompletion.exp | 423 +++++++++++++++++++++ gdb/testsuite/gdb.linespec/cpls-abi-tag.cc | 93 +++++ gdb/testsuite/gdb.linespec/cpls-abi-tag.exp | 286 ++++++++++++++ gdb/testsuite/gdb.linespec/explicit.exp | 80 ++-- gdb/testsuite/lib/completion-support.exp | 2 +- gdb/testsuite/lib/gdb.exp | 6 +- gdb/utils.c | 96 ++++- gdb/utils.h | 16 +- 39 files changed, 2092 insertions(+), 179 deletions(-) copy gdb/testsuite/{gdb.mi/list-thread-groups-available.c => gdb.cp/save-bp-qualif [...] create mode 100644 gdb/testsuite/gdb.cp/save-bp-qualified.exp create mode 100644 gdb/testsuite/gdb.linespec/cpls-abi-tag.cc create mode 100644 gdb/testsuite/gdb.linespec/cpls-abi-tag.exp