This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-arm-lts-defconfig in repository toolchain/binutils-gdb.
from 713f1b445a Automatic date update in version.in adds e60f4d3bda x86: Disable GOT relaxation with data prefix adds a4749e56ca Correct ChangeLog entries for PR gas/23854 commit adds 8e6a5953e1 Fix 4K leak in open_source_file each time next/step changes [...] adds bb20ccab70 ChangeLog for 'Fix 4K leak each time next/step changes of fu [...] adds 50cab6efce Automatic date update in version.in adds bbae6b11eb x86: XOP VPHADD* / VPHSUB* are VEX.W0 adds 0aaca1d90a x86: add more VexWIG adds 563c7eef61 x86: allow {store} to select alternative {,}PEXTRW encoding adds fd71a3756e x86: fix various non-LIG templates adds 931d03b75a x86: adjust {,E}VEX.W handling outside of 64-bit mode adds b50c9f3166 x86: adjust {,E}VEX.W handling for PEXTR* / PINSR* adds 58a211d260 x86: correctly handle KMOVD with VEX.W set outside of 64-bit mode adds 9819647a63 x86: correctly handle VMOVD with EVEX.W set outside of 64-bit mode adds 4dd4e63945 x86: correctly handle VPBROADCASTD with EVEX.W set outside o [...] adds 2eac3da184 PowerPC instruction operand flag validation adds 715537181e PowerPC instruction mask checks adds 0632eeea6e [BINUTILS, ARM] Add Armv8.5-A to select_arm_features and upd [...]
No new revisions were added by this update.
Summary of changes: bfd/version.h | 2 +- gas/ChangeLog | 97 +++++ gas/config/tc-i386.c | 17 +- gas/config/tc-ppc.c | 46 ++- gas/testsuite/gas/i386/avx-wig.d | 69 +++- gas/testsuite/gas/i386/avx-wig.s | 67 ++++ gas/testsuite/gas/i386/avx2-wig.d | 13 +- gas/testsuite/gas/i386/avx2-wig.s | 1 - gas/testsuite/gas/i386/evex-lig-2.d | 17 + gas/testsuite/gas/i386/evex-lig-2.s | 25 ++ gas/testsuite/gas/i386/evex-wig.s | 58 +++ gas/testsuite/gas/i386/evex-wig1-intel.d | 36 ++ gas/testsuite/gas/i386/evex-wig1.d | 36 ++ gas/testsuite/gas/i386/evex-wig2.d | 17 - gas/testsuite/gas/i386/evex-wig2.s | 11 - gas/testsuite/gas/i386/i386.exp | 3 +- gas/testsuite/gas/i386/mixed-mode-reloc32.d | 2 +- gas/testsuite/gas/i386/pseudos.d | 11 +- gas/testsuite/gas/i386/pseudos.s | 12 + gas/testsuite/gas/i386/vex-lig-2.d | 74 ++++ gas/testsuite/gas/i386/vex-lig-2.s | 83 +++++ gas/testsuite/gas/i386/x86-64-avx-wig.d | 22 +- gas/testsuite/gas/i386/x86-64-avx-wig.s | 20 + gas/testsuite/gas/i386/x86-64-avx2-wig.d | 13 +- gas/testsuite/gas/i386/x86-64-avx2-wig.s | 1 - gas/testsuite/gas/i386/x86-64-evex-lig-2.d | 21 ++ gas/testsuite/gas/i386/x86-64-evex-lig-2.s | 31 ++ gas/testsuite/gas/i386/x86-64-evex-wig.s | 13 + gas/testsuite/gas/i386/x86-64-evex-wig1-intel.d | 9 + gas/testsuite/gas/i386/x86-64-evex-wig1.d | 9 + gas/testsuite/gas/i386/x86-64-pseudos.d | 11 +- gas/testsuite/gas/i386/x86-64-pseudos.s | 12 + gas/testsuite/gas/i386/x86-64-vex-lig-2.d | 78 ++++ gas/testsuite/gas/i386/x86-64-vex-lig-2.s | 89 +++++ gdb/ChangeLog | 6 + gdb/source.c | 3 +- include/ChangeLog | 6 + include/opcode/arm.h | 7 +- ld/ChangeLog | 11 + ld/testsuite/ld-i386/i386.exp | 1 + ld/testsuite/ld-i386/pr23854.d | 28 ++ ld/testsuite/ld-i386/pr23854.s | 33 ++ ld/testsuite/ld-x86-64/pr23854.d | 28 ++ ld/testsuite/ld-x86-64/pr23854.s | 33 ++ ld/testsuite/ld-x86-64/x86-64.exp | 1 + opcodes/ChangeLog | 91 +++++ opcodes/arm-dis.c | 10 +- opcodes/i386-dis-evex.h | 30 +- opcodes/i386-dis.c | 86 +---- opcodes/i386-opc.tbl | 469 ++++++++++++------------ opcodes/i386-tbl.h | 454 +++++++++++------------ opcodes/ppc-opc.c | 199 +++------- 52 files changed, 1751 insertions(+), 771 deletions(-) delete mode 100644 gas/testsuite/gas/i386/evex-wig2.d delete mode 100644 gas/testsuite/gas/i386/evex-wig2.s create mode 100644 gas/testsuite/gas/i386/vex-lig-2.d create mode 100644 gas/testsuite/gas/i386/vex-lig-2.s create mode 100644 gas/testsuite/gas/i386/x86-64-vex-lig-2.d create mode 100644 gas/testsuite/gas/i386/x86-64-vex-lig-2.s create mode 100644 ld/testsuite/ld-i386/pr23854.d create mode 100644 ld/testsuite/ld-i386/pr23854.s create mode 100644 ld/testsuite/ld-x86-64/pr23854.d create mode 100644 ld/testsuite/ld-x86-64/pr23854.s