This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch users/roland/objcopy-merge-notes-qsort in repository binutils-gdb.
discards 20d44d173f9 Fix objcopy --merge-notes dependency on qsort implementatio [...] adds 27ee3a66bfb Automatic date update in version.in adds 3024a17ae02 Mark all weak aliases for copy relocations adds 168f8c6ba00 Two minor changes in ctfread.c adds 7568c93bf95 AArch64: Fix cfinv disassembly issues adds e3696f67abf Replace deprecated tcl case statements with switch statements adds bc31405ebb2 x86-64: Properly encode and decode movsxd adds 086b06f3c9d Remove cpu-plugin.c adds 82ef9cad78b Fix objcopy --merge-notes dependency on qsort implementatio [...]
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 (20d44d173f9) \ N -- N -- N refs/heads/users/roland/objcopy-merge-notes-qsort (82ef9cad78b)
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.
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 17 + bfd/Makefile.am | 2 - bfd/Makefile.in | 3 - bfd/archures.c | 2 - bfd/bfd-in2.h | 1 - bfd/cpu-plugin.c | 41 - bfd/elflink.c | 18 +- bfd/po/SRC-POTFILES.in | 1 - bfd/version.h | 2 +- binutils/ChangeLog | 7 +- binutils/testsuite/lib/binutils-common.exp | 18 +- gas/ChangeLog | 33 + gas/config/tc-i386.c | 4 +- gas/doc/c-i386.texi | 18 + gas/testsuite/gas/aarch64/armv8_4-a.d | 1 + gas/testsuite/gas/aarch64/armv8_4-a.s | 3 + gas/testsuite/gas/all/gas.exp | 122 +- gas/testsuite/gas/elf/elf.exp | 62 +- gas/testsuite/gas/i386/i386.exp | 6 + gas/testsuite/gas/i386/x86-64-movsxd-intel.d | 26 + .../gas/i386/x86-64-movsxd-intel64-intel.d | 26 + .../gas/i386/x86-64-movsxd-intel64-inval.l | 27 + .../gas/i386/x86-64-movsxd-intel64-inval.s | 14 + gas/testsuite/gas/i386/x86-64-movsxd-intel64.d | 25 + gas/testsuite/gas/i386/x86-64-movsxd-intel64.s | 20 + gas/testsuite/gas/i386/x86-64-movsxd-inval.l | 27 + gas/testsuite/gas/i386/x86-64-movsxd-inval.s | 14 + gas/testsuite/gas/i386/x86-64-movsxd.d | 25 + gas/testsuite/gas/i386/x86-64-movsxd.s | 20 + gas/testsuite/gas/macros/macros.exp | 24 +- gas/testsuite/lib/gas-defs.exp | 2 +- gdb/ChangeLog | 5 + gdb/ctfread.c | 12 +- ld/ChangeLog | 17 + ld/testsuite/ld-elf/pr25458.map | 4 + ld/testsuite/ld-elf/pr25458.rd | 10 + ld/testsuite/ld-elf/pr25458a.s | 6 + ld/testsuite/ld-elf/pr25458b.s | 11 + ld/testsuite/ld-elf/shared.exp | 32 + ld/testsuite/ld-elfvers/vers.exp | 6 +- ld/testsuite/ld-ifunc/ifunc.exp | 4 +- ld/testsuite/ld-unique/unique.exp | 4 +- opcodes/ChangeLog | 23 + opcodes/aarch64-asm-2.c | 174 +- opcodes/aarch64-dis-2.c | 2364 ++++++++++---------- opcodes/aarch64-opc-2.c | 16 +- opcodes/aarch64-tbl.h | 9 +- opcodes/i386-dis.c | 61 +- opcodes/i386-opc.tbl | 4 +- opcodes/i386-tbl.h | 34 +- 50 files changed, 1940 insertions(+), 1467 deletions(-) delete mode 100644 bfd/cpu-plugin.c create mode 100644 gas/testsuite/gas/i386/x86-64-movsxd-intel.d create mode 100644 gas/testsuite/gas/i386/x86-64-movsxd-intel64-intel.d create mode 100644 gas/testsuite/gas/i386/x86-64-movsxd-intel64-inval.l create mode 100644 gas/testsuite/gas/i386/x86-64-movsxd-intel64-inval.s create mode 100644 gas/testsuite/gas/i386/x86-64-movsxd-intel64.d create mode 100644 gas/testsuite/gas/i386/x86-64-movsxd-intel64.s create mode 100644 gas/testsuite/gas/i386/x86-64-movsxd-inval.l create mode 100644 gas/testsuite/gas/i386/x86-64-movsxd-inval.s create mode 100644 gas/testsuite/gas/i386/x86-64-movsxd.d create mode 100644 gas/testsuite/gas/i386/x86-64-movsxd.s create mode 100644 ld/testsuite/ld-elf/pr25458.map create mode 100644 ld/testsuite/ld-elf/pr25458.rd create mode 100644 ld/testsuite/ld-elf/pr25458a.s create mode 100644 ld/testsuite/ld-elf/pr25458b.s