This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch users/palves/literal-matching in repository binutils-gdb.
discards 42f0f6023f Move literal matching to Ada discards 48f23b7013 gdb.ada/maint_with_ada.exp: New testcase discards e5a4a1c554 symbol_name_match_type::LITERAL discards b388ac9892 Test from WIP: `nsym != NULL' assert failure in stack.c::pri [...] adds 25982ee022 Add missing RISC-V fsrmi and fsflagsi instructions. adds b3e7dd3c9d Automatic date update in version.in adds e05fa6f9df (Ada) Add support for task switching when debugging core files adds 79e8fcaafa Ada: unable to compare strings (Attempt to compare array wit [...] adds 8af5c486ea DWARF-5 .debug_names DW_IDX_type_unit fix adds 4baeffab22 binutils nm testsuite tidy adds 863f7a5f48 Update the address of the FSF in the copyright notice of fil [...] adds 8e557e52b3 py-breakpoint: Don't use the 'p' PyArg_ParseTupleAndKeywords [...] adds 1e5dd7c95a Automatic date update in version.in adds 828d584679 (Ada) Handle same component names when searching in tagged types adds 2778747c56 [GOLD] PR22602, handle __tls_get_addr forwarders properly adds c5d0745b0d x86: correct abort check adds 93b71a2666 x86: drop stray CheckRegSize uses adds 141975a1e5 x86: correct operand type checks adds fbc2255575 Fix disassembly for PowerPC adds 97d4fac10f Skip parse_memory_map_tests if XML is disabled adds 1af17fd9cc Skip 'maintenance check xml-descriptions' if XML is disabled adds 68f81d6019 Fix PR19061, gdb hangs/spins-on-cpu when debugging any progr [...] new 2547400df8 Test from WIP: `nsym != NULL' assert failure in stack.c::pri [...] new 1fdfcf576a symbol_name_match_type::LITERAL new a8583068b0 gdb.ada/maint_with_ada.exp: New testcase new 47349fdd5d Move literal matching to Ada
This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this:
* -- * -- B -- O -- O -- O (42f0f6023f) \ N -- N -- N refs/heads/users/palves/literal-matching (47349fdd5d)
You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B.
Any revisions marked "omits" are not gone; other references still refer to them. Any revisions marked "discards" are gone forever.
The 4 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: COPYING.LIBGLOSS | 8 +- ChangeLog | 4 + bfd/ChangeLog | 11 ++ bfd/cpu-mt.c | 4 +- bfd/elf32-m32c.c | 3 +- bfd/elf32-mt.c | 4 +- bfd/elf32-rl78.c | 3 +- bfd/elf32-rx.c | 3 +- bfd/elf32-rx.h | 6 +- bfd/elf32-spu.h | 5 +- bfd/hosts/x86-64linux.h | 8 +- bfd/version.h | 2 +- binutils/ChangeLog | 7 + binutils/testsuite/binutils-all/nm.exp | 41 ++--- binutils/testsuite/lib/utils-lib.exp | 1 - etc/ChangeLog | 4 + etc/add-log.el | 6 +- gas/ChangeLog | 25 +++ gas/config/tc-i386.c | 12 +- gas/config/tc-m32c.c | 6 +- gas/config/tc-m32c.h | 6 +- gas/config/tc-mt.c | 6 +- gas/config/tc-mt.h | 6 +- gas/config/tc-visium.c | 6 +- gas/config/tc-visium.h | 6 +- gas/testsuite/gas/riscv/fsxxi.d | 13 ++ gas/testsuite/gas/riscv/fsxxi.s | 4 + gas/testsuite/gas/rx/explode | 6 +- gdb/ChangeLog | 57 +++++++ gdb/ada-lang.c | 188 ++++++++++++++++++++- gdb/ada-tasks.c | 34 +--- gdb/alpha-tdep.c | 18 +- gdb/dwarf2read.c | 136 ++++++++++++--- gdb/nat/linux-ptrace.h | 5 + gdb/python/py-breakpoint.c | 6 +- gdb/testsuite/ChangeLog | 17 ++ gdb/testsuite/gdb.ada/same_component_name.exp | 60 +++++++ gdb/testsuite/gdb.ada/same_component_name/foo.adb | 31 ++++ gdb/testsuite/gdb.ada/same_component_name/pck.adb | 42 +++++ gdb/testsuite/gdb.ada/same_component_name/pck.ads | 51 ++++++ .../unittest.exp => gdb.ada/str_binop_equal.exp} | 32 +++- .../gdb.ada/str_binop_equal/foo_p211_061.adb | 22 +++ gdb/testsuite/gdb.ada/str_binop_equal/pck.adb | 22 +++ gdb/testsuite/gdb.ada/str_binop_equal/pck.ads | 20 +++ gdb/testsuite/gdb.ada/task_switch_in_core.exp | 80 +++++++++ .../gdb.ada/task_switch_in_core/crash.adb | 53 ++++++ gdb/testsuite/gdb.gdb/unittest.exp | 4 +- gdb/unittests/memory-map-selftests.c | 6 + gold/ChangeLog | 7 + gold/powerpc.cc | 8 +- ld/ChangeLog | 5 + ld/testsuite/ld-mn10300/mn10300.exp | 3 +- opcodes/ChangeLog | 19 +++ opcodes/disassemble.c | 6 +- opcodes/i386-opc.tbl | 162 +++++++++--------- opcodes/i386-tbl.h | 148 ++++++++-------- opcodes/riscv-opc.c | 4 + 57 files changed, 1141 insertions(+), 321 deletions(-) create mode 100644 gas/testsuite/gas/riscv/fsxxi.d create mode 100644 gas/testsuite/gas/riscv/fsxxi.s create mode 100644 gdb/testsuite/gdb.ada/same_component_name.exp create mode 100644 gdb/testsuite/gdb.ada/same_component_name/foo.adb create mode 100644 gdb/testsuite/gdb.ada/same_component_name/pck.adb create mode 100644 gdb/testsuite/gdb.ada/same_component_name/pck.ads copy gdb/testsuite/{gdb.gdb/unittest.exp => gdb.ada/str_binop_equal.exp} (53%) create mode 100644 gdb/testsuite/gdb.ada/str_binop_equal/foo_p211_061.adb create mode 100644 gdb/testsuite/gdb.ada/str_binop_equal/pck.adb create mode 100644 gdb/testsuite/gdb.ada/str_binop_equal/pck.ads create mode 100644 gdb/testsuite/gdb.ada/task_switch_in_core.exp create mode 100644 gdb/testsuite/gdb.ada/task_switch_in_core/crash.adb