This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch users/hjl/x86 in repository binutils-gdb.
discards 100ec8feb6 x86-64: Add R_X86_64_THUNK_GOTPCRELX adds 0eb97953ad s390: Remove duplicate checks for cached gdbarch at init adds 21f6f5ffc6 s390: Allocate gdbarch & tdep at start of gdbarch_init adds ab9bcc6797 s390: gdbarch_tdep.have_* int -> bool adds 095085d847 s390: gdbarch_tdep add field tdesc adds 47c9317e71 s390: Move tdesc validation to separate function adds 650f5e1370 s390: if -> gdb_assert for tdesc_has_registers check adds 7042632bf7 s390: Hook s390 into OSABI mechanism adds 9c0b896ee1 s390: gdbarch_tdep add hook for syscall record adds d6e5894564 s390: Split up s390-linux-tdep.c into two files adds ef8914a4d7 s390: Move record-replay to s390-tdep.c adds 14c41f479f s390: Clean up s390-linux-tdep.c adds f866b262e8 MIPS/GAS: Add missing `-mmips16e2'/`-mno-mips16e2' help text adds b4f6242e95 MIPS/GAS: Correct `as --help' always reporting `o32' as the [...] adds 3233d7d074 Enable Intel WBNOINVD instruction. adds be3a8dca2d Enable Intel PCONFIG instruction. new 17505e0525 x86-64: Add R_X86_64_THUNK_GOTPCRELX
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 (100ec8feb6) \ N -- N -- N refs/heads/users/hjl/x86 (17505e0525)
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 1 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/elf64-x86-64.c | 110 +- gas/ChangeLog | 34 + gas/config/tc-i386.c | 4 + gas/config/tc-mips.c | 14 +- gas/doc/c-i386.texi | 3 + gas/testsuite/gas/i386/i386.exp | 8 + gas/testsuite/gas/i386/ilp32/x86-64-gotpcrel-2.d | 29 +- gas/testsuite/gas/i386/pconfig-intel.d | 11 + gas/testsuite/gas/i386/pconfig.d | 11 + gas/testsuite/gas/i386/pconfig.s | 5 + gas/testsuite/gas/i386/wbnoinvd-intel.d | 11 + gas/testsuite/gas/i386/wbnoinvd.d | 11 + gas/testsuite/gas/i386/wbnoinvd.s | 5 + gas/testsuite/gas/i386/x86-64-gotpcrel-2.d | 28 +- gas/testsuite/gas/i386/x86-64-gotpcrel-2.s | 2 + gas/testsuite/gas/i386/x86-64-pconfig-intel.d | 11 + gas/testsuite/gas/i386/x86-64-pconfig.d | 11 + gas/testsuite/gas/i386/x86-64-pconfig.s | 5 + gas/testsuite/gas/i386/x86-64-wbnoinvd-intel.d | 11 + gas/testsuite/gas/i386/x86-64-wbnoinvd.d | 11 + gas/testsuite/gas/i386/x86-64-wbnoinvd.s | 5 + gdb/ChangeLog | 118 + gdb/Makefile.in | 3 + gdb/configure.tgt | 4 +- gdb/s390-linux-nat.c | 1 + gdb/s390-linux-tdep.c | 8481 ++--------------- gdb/s390-linux-tdep.h | 176 +- gdb/s390-tdep.c | 7123 ++++++++++++++ gdb/{s390-linux-tdep.h => s390-tdep.h} | 179 +- opcodes/ChangeLog | 22 + opcodes/i386-dis.c | 10 +- opcodes/i386-gen.c | 6 + opcodes/i386-init.h | 422 +- opcodes/i386-opc.h | 6 + opcodes/i386-opc.tbl | 12 + opcodes/i386-tbl.h | 10586 +++++++++++---------- 36 files changed, 13954 insertions(+), 13535 deletions(-) create mode 100644 gas/testsuite/gas/i386/pconfig-intel.d create mode 100644 gas/testsuite/gas/i386/pconfig.d create mode 100644 gas/testsuite/gas/i386/pconfig.s create mode 100644 gas/testsuite/gas/i386/wbnoinvd-intel.d create mode 100644 gas/testsuite/gas/i386/wbnoinvd.d create mode 100644 gas/testsuite/gas/i386/wbnoinvd.s create mode 100644 gas/testsuite/gas/i386/x86-64-pconfig-intel.d create mode 100644 gas/testsuite/gas/i386/x86-64-pconfig.d create mode 100644 gas/testsuite/gas/i386/x86-64-pconfig.s create mode 100644 gas/testsuite/gas/i386/x86-64-wbnoinvd-intel.d create mode 100644 gas/testsuite/gas/i386/x86-64-wbnoinvd.d create mode 100644 gas/testsuite/gas/i386/x86-64-wbnoinvd.s create mode 100644 gdb/s390-tdep.c copy gdb/{s390-linux-tdep.h => s390-tdep.h} (62%)