This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch users/palves/cxx-breakpoint-improvements-v2 in repository binutils-gdb.
discards e17971f888 Breakpoints in symbols with ABI tags (PR c++/19436) discards c954288a24 Make "break foo" find "A::foo", A::B::foo", etc. [C++ and wi [...] discards 3b8dd0cfaa Handle custom completion match prefix / LCD adds 10329bb27f fix two issues in gdb.ada/mi_catch_ex.exp (re: "exception-message") adds 120bc8b8b9 gas: extract xg_relax_trampoline from xtensa_relax_frag adds fec68fb168 gas: xtensa: extract jump assembling for trampolines adds 1c2649f50f gas: xtensa: reuse find_trampoline_seg adds 46888d7100 gas: xtensa: merge trampoline_frag into xtensa_frag_type adds fe6c2f1b64 gas: xtensa: rewrite xg_relax_trampoline adds 76a493ab99 gas: xtensa: reuse trampoline placement code adds 148d638429 gas: xtensa: implement trampoline coalescing adds 407e114084 gas: xtensa: speed up find_trampoline_seg adds b22c88c2ca A simpler way to make the "arch" build directory adds f06afa5336 Move cli object files to cli subdirectory adds 6f3cdf9a3b Move mi objects to mi subdirectory adds a26aa30cc5 Move compile object files to compile subdirectory adds 5c8a943144 Move tui object files to tui subdirectory adds 75787ac19c Move unittests object files to unittests subdirectory adds bd810fff78 Move guile object files to guile subdirectory adds 8fd8d003de Move python object files to python subdirectory adds afa0a41159 Define YYOBJ in terms of YYFILES adds b5adff3b5e Simplify COMMON_OBS by using list of sources adds 4f04fba813 Add missing files to COMMON_SFILES adds 66599a7dc0 Move target object files to target subdirectory adds 18ca73470a Remove REMOTE_OBS adds 57c1b6811a Automatic date update in version.in adds 033bfb739b Fix symbol values and relocation addends for relocatable links. adds f0531ed6a4 Compress loads/stores with implicit 0 offset. adds a83ef4d139 ld: Set non_ir_ref_regular on symbols referenced in regular objects adds cd5b2babea Copying symbol type in ld script assignments adds 165f707ac8 PR22471, undefined reference to linker-defined symbols new a9e43b7f4e Handle custom completion match prefix / LCD new b1ed2c0244 Make "break foo" find "A::foo", A::B::foo", etc. [C++ and wi [...] new d422f98ef0 Breakpoints in symbols with ABI tags (PR c++/19436) new 82f620c7ba MI and --qualified
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 (e17971f888) \ N -- N -- N refs/heads/users/palves/cxx-breakpoint-improvements-v2 ( [...]
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: bfd/ChangeLog | 22 + bfd/elf64-mmix.c | 3 + bfd/elflink.c | 75 +- bfd/linker.c | 9 +- bfd/version.h | 2 +- gas/ChangeLog | 133 +++ gas/config/tc-riscv.c | 38 +- gas/config/tc-xtensa.c | 984 +++++++++++---------- gas/config/tc-xtensa.h | 7 + gas/testsuite/gas/riscv/c-ld.d | 17 + gas/testsuite/gas/riscv/c-ld.s | 9 + gas/testsuite/gas/riscv/c-lw.d | 17 + gas/testsuite/gas/riscv/c-lw.s | 9 + gas/testsuite/gas/riscv/riscv.exp | 2 + gas/testsuite/gas/xtensa/all.exp | 1 + .../branch-swap-2.l => xtensa/trampoline-2.l} | 0 gas/testsuite/gas/xtensa/trampoline-2.s | 20 + gas/testsuite/gas/xtensa/trampoline.d | 35 +- gas/testsuite/gas/xtensa/trampoline.s | 2 + gdb/ChangeLog | 91 ++ gdb/Makefile.in | 485 ++-------- gdb/configure | 19 +- gdb/configure.ac | 15 +- gdb/linespec.c | 2 + gdb/mi/mi-cmd-break.c | 12 +- gdb/testsuite/ChangeLog | 7 + gdb/testsuite/gdb.ada/mi_catch_ex.exp | 4 +- gold/ChangeLog | 21 + gold/object.cc | 42 +- gold/object.h | 4 +- gold/powerpc.cc | 17 +- gold/target-reloc.h | 19 +- gold/testsuite/pr22266_a.c | 8 + gold/testsuite/pr22266_main.c | 4 + gold/testsuite/pr22266_script.t | 5 +- ld/ChangeLog | 38 + ld/ldexp.c | 115 +-- ld/ldexp.h | 5 + ld/ldlang.c | 6 +- ld/testsuite/ld-mips-elf/tlsdyn-o32-1.d | 4 +- ld/testsuite/ld-mips-elf/tlsdyn-o32-1.got | 2 +- ld/testsuite/ld-mips-elf/tlsdyn-o32-2.d | 4 +- ld/testsuite/ld-mips-elf/tlsdyn-o32-2.got | 2 +- ld/testsuite/ld-mips-elf/tlsdyn-o32-3.d | 4 +- ld/testsuite/ld-mips-elf/tlsdyn-o32-3.got | 2 +- ld/testsuite/ld-plugin/lto.exp | 9 + ld/testsuite/ld-plugin/pr22502a.c | 16 + ld/testsuite/ld-plugin/pr22502b.c | 3 + 48 files changed, 1311 insertions(+), 1039 deletions(-) create mode 100644 gas/testsuite/gas/riscv/c-ld.d create mode 100644 gas/testsuite/gas/riscv/c-ld.s create mode 100644 gas/testsuite/gas/riscv/c-lw.d create mode 100644 gas/testsuite/gas/riscv/c-lw.s copy gas/testsuite/gas/{mips/branch-swap-2.l => xtensa/trampoline-2.l} (100%) create mode 100644 gas/testsuite/gas/xtensa/trampoline-2.s create mode 100644 ld/testsuite/ld-plugin/pr22502a.c create mode 100644 ld/testsuite/ld-plugin/pr22502b.c