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 e439fa140a Clarify "list" output when specified lines are ambiguous new 7c44b49cb6 Introduce gdb::array_view new 6c5b2ebeac struct symtabs_and_lines -> std::vector<symtab_and_line> new 51abb42130 Kill init_sal
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 | 153 +++++++++++ gdb/Makefile.in | 2 + gdb/ada-lang.c | 3 +- gdb/ax-gdb.c | 12 +- gdb/break-catch-throw.c | 12 +- gdb/breakpoint.c | 356 ++++++++++--------------- gdb/breakpoint.h | 20 +- gdb/cli/cli-cmds.c | 172 +++++------- gdb/common/array-view.h | 179 +++++++++++++ gdb/elfread.c | 14 +- gdb/frame.c | 25 +- gdb/frame.h | 3 +- gdb/guile/scm-frame.c | 2 +- gdb/guile/scm-symtab.c | 6 +- gdb/infcall.c | 11 +- gdb/infcmd.c | 35 +-- gdb/infrun.c | 52 ++-- gdb/linespec.c | 264 ++++++++----------- gdb/linespec.h | 32 +-- gdb/macrocmd.c | 8 +- gdb/mi/mi-main.c | 17 +- gdb/probe.c | 33 +-- gdb/probe.h | 14 +- gdb/python/py-frame.c | 3 +- gdb/python/python.c | 47 ++-- gdb/reverse.c | 8 +- gdb/source.c | 54 ++-- gdb/source.h | 3 +- gdb/stack.c | 56 ++-- gdb/stack.h | 2 +- gdb/symtab.c | 26 +- gdb/symtab.h | 27 +- gdb/tracepoint.c | 39 +-- gdb/tui/tui-disasm.c | 2 +- gdb/tui/tui-stack.c | 3 +- gdb/tui/tui-winsource.c | 7 +- gdb/unittests/array-view-selftests.c | 494 +++++++++++++++++++++++++++++++++++ 37 files changed, 1368 insertions(+), 828 deletions(-) create mode 100644 gdb/common/array-view.h create mode 100644 gdb/unittests/array-view-selftests.c