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 0d656dfe5b4 Add note to translators not to translate z/Architecture new 6f496115646 Refactor 'maint set dwarf synchronous' handling new cd0dcd0cfd0 Refactor quick-function installation in DWARF reader new 7da299f0c5a Remove IS_ENUM_CLASS from cooked_index_flag new 374807b6075 Document GDB extensions to DWARF .debug_names new 5902fa8a555 Add language to cooked_index_entry new 9fac3e79fde Move cooked_index_functions to cooked-index.h new 6e53356b778 Do not write the index cache from an index new 47efef8f2d8 Change cooked_index_worker to abstract base class new 36cde74bd8b Remove cooked_index_worker::start_reading new 3a862152958 Empty hash table fix in .debug_names reader new d2cc8bd228b Fix dw2-zero-range.exp when an index is in use new 07e98a5ad3f Explicitly expand CUs in dw2-inline-with-lexical-scope.exp new f8c024dcefc Remove some .debug_names tests new 9b63bc4644d Allow other results in DW_TAG_entry_point test new b371f07c47c Rewrite .debug_names reader new 2d34b0ea1aa Export dwarf5_augmentation new 91a42a61808 Rewrite .debug_names writer
The 17 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/doc/gdb.texinfo | 39 + gdb/dwarf2/cooked-index.c | 164 +++- gdb/dwarf2/cooked-index.h | 168 +++- gdb/dwarf2/index-write.c | 401 ++++----- gdb/dwarf2/mapped-index.h | 4 +- gdb/dwarf2/read-debug-names.c | 956 ++++++++------------- gdb/dwarf2/read-debug-names.h | 2 + gdb/dwarf2/read.c | 341 ++------ gdb/testsuite/gdb.dwarf2/clang-debug-names-2-foo.c | 22 - gdb/testsuite/gdb.dwarf2/clang-debug-names-2.c | 27 - gdb/testsuite/gdb.dwarf2/clang-debug-names-2.exp | 42 - gdb/testsuite/gdb.dwarf2/clang-debug-names.c | 25 - gdb/testsuite/gdb.dwarf2/clang-debug-names.exp | 42 - gdb/testsuite/gdb.dwarf2/clang-debug-names.exp.tcl | 121 --- .../gdb.dwarf2/debug-names-bad-cu-index.exp | 20 +- gdb/testsuite/gdb.dwarf2/dw2-entry-points.exp | 5 +- gdb/testsuite/gdb.dwarf2/dw2-inline-param.exp | 7 + .../gdb.dwarf2/dw2-inline-with-lexical-scope.exp | 4 + gdb/testsuite/gdb.dwarf2/dw2-minsym-in-cu.exp | 10 + gdb/testsuite/gdb.dwarf2/dw2-zero-range.exp | 10 +- gdb/testsuite/lib/dwarf.exp | 7 +- 21 files changed, 976 insertions(+), 1441 deletions(-) delete mode 100644 gdb/testsuite/gdb.dwarf2/clang-debug-names-2-foo.c delete mode 100644 gdb/testsuite/gdb.dwarf2/clang-debug-names-2.c delete mode 100644 gdb/testsuite/gdb.dwarf2/clang-debug-names-2.exp delete mode 100644 gdb/testsuite/gdb.dwarf2/clang-debug-names.c delete mode 100644 gdb/testsuite/gdb.dwarf2/clang-debug-names.exp delete mode 100644 gdb/testsuite/gdb.dwarf2/clang-debug-names.exp.tcl