This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch users/ibhagat/try-sframe in repository binutils-gdb.
discards b758cabfa18 libsframe: testsuite: add new tests for sframe_find_fre API discards 1e026ac0a74 libsframe: update the semantics of sframe_fre_get_fp_offset discards 0046059e776 libsframe: update the semantics of sframe_fre_get_ra_offset discards f19db475a02 libsframe: make sframe_get_funcdesc_with_addr static adds 0014c67d3bc Automatic date update in version.in adds 3bc69c18671 Delete struct artdata archive_head adds de7b90610e9 Keeping track of rs6000-coff archive element pointers adds 3a117c58873 ld: add missing period after @xref adds 0699f2d795c RISC-V: Optimize relaxation of gp with max_alignment. adds ae272fb8a57 bfd: fix STRICT_PE_FORMAT build adds 4bcbe86c25a x86: move fetch error handling into a helper function adds 06173b5d092 x86: change fetch error handling in top-level function adds bf4d07d5394 x86: change fetch error handling in ckprefix() adds 0b51ac42773 x86: change fetch error handling in get_valid_dis386() adds 9760136327e x86: change fetch error handling when processing operands adds a82b3c5656d x86: change fetch error handling for get<N>() adds d82c06b68e3 x86: drop use of setjmp() from disassembler adds 32c8e7265a5 x86: drop (explicit) BFD64 dependency from disassembler adds 532d55c0ab4 Handle function descriptors in call_site_target adds 9df25c346f5 Handle erroneous DW_AT_call_return_pc adds fbdecfbf285 Use entry values for 32-bit PPC struct return adds da9a978aae7 Fix -Wmaybe-uninitialized warning in opcodes/i386-dis.c adds f1531d04617 [gdb/cli] Add maint info screen adds bd648c6ea00 [gdb/testsuite] Add make-check-all.sh adds 6fc39605e69 gdb: remove return value of set_language adds f57d81815f8 gdb: switch "set language" to getter/setter adds 129bce36048 gdb: remove language_auto new 1ed6acdb91e libsframe: make sframe_get_funcdesc_with_addr static new 2595031c3c7 libsframe: testsuite: add new tests for sframe_find_fre API new 7bf0f2dc7cc libsframe: update the semantics of sframe_fre_get_ra_offset new 07b8c78fec2 libsframe: update the semantics of sframe_fre_get_fp_offset
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 (b758cabfa18) \ N -- N -- N refs/heads/users/ibhagat/try-sframe (07b8c78fec2)
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/archive.c | 20 +- bfd/coff-rs6000.c | 237 ++++--- bfd/coff64-rs6000.c | 16 +- bfd/coffcode.h | 6 +- bfd/elfnn-riscv.c | 103 ++- bfd/libbfd-in.h | 1 - bfd/libbfd.h | 1 - bfd/version.h | 2 +- gdb/ada-lang.c | 2 +- gdb/arch-utils.c | 6 + gdb/defs.h | 1 - gdb/doc/gdb.texinfo | 7 + gdb/dwarf2/loc.c | 6 +- gdb/gdbarch-gen.h | 13 + gdb/gdbarch.c | 22 + gdb/gdbarch_components.py | 17 + gdb/language.c | 175 ++--- gdb/language.h | 5 +- gdb/mi/mi-parse.c | 3 +- gdb/minsyms.c | 2 +- gdb/ppc-sysv-tdep.c | 3 +- gdb/ppc-tdep.h | 4 +- gdb/rs6000-tdep.c | 22 +- gdb/symmisc.c | 3 +- gdb/symtab.c | 20 +- gdb/testsuite/gdb.ada/finish-large.exp | 30 + gdb/testsuite/gdb.ada/finish-large/p.adb | 24 + gdb/testsuite/gdb.ada/finish-large/pck.adb | 28 + gdb/testsuite/gdb.ada/finish-large/pck.ads | 37 + gdb/testsuite/make-check-all.sh | 329 +++++++++ gdb/utils.c | 70 +- include/coff/xcoff.h | 56 +- ld/ld.texi | 2 +- ld/testsuite/ld-riscv-elf/ld-riscv-elf.exp | 1 + ld/testsuite/ld-riscv-elf/relax-max-align-gp.d | 46 ++ ld/testsuite/ld-riscv-elf/relax-max-align-gp.s | 28 + libsframe/sframe-dump.c | 12 +- libsframe/testsuite/libsframe.find/findfre-1.c | 10 +- opcodes/ChangeLog | 4 + opcodes/i386-dis.c | 948 +++++++++++++------------ 40 files changed, 1558 insertions(+), 764 deletions(-) create mode 100644 gdb/testsuite/gdb.ada/finish-large.exp create mode 100644 gdb/testsuite/gdb.ada/finish-large/p.adb create mode 100644 gdb/testsuite/gdb.ada/finish-large/pck.adb create mode 100644 gdb/testsuite/gdb.ada/finish-large/pck.ads create mode 100755 gdb/testsuite/make-check-all.sh create mode 100644 ld/testsuite/ld-riscv-elf/relax-max-align-gp.d create mode 100644 ld/testsuite/ld-riscv-elf/relax-max-align-gp.s