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-stable-defconfig in repository toolchain/ci/binutils-gdb.
from 1ff30553d8 Automatic date update in version.in adds a9d96ab97e Remove an unnecessary set of parentheses in the arm-dis.c so [...] adds e1f2e1a2da Add an objfile getter to gdb.Type adds 5d79adc4b2 Add support for Intel ENQCMD[S] instructions adds 9186c494a3 Enable Intel AVX512_VP2INTERSECT insn adds a610aa4f9c libctf: fix the type of ctf_enum.cte_value adds 941accce38 libctf: fix use-after-free in function dumping adds 6b22174ff1 libctf: look for BSD versus GNU qsort_r signatures adds ad118caa9f libctf: work on platforms without O_CLOEXEC. adds 63c6fc6cac i386: Check for reserved VEX.vvvv and EVEX.vvvv adds 76fad99963 Use CHAR_BIT instead of NBBY in libctf adds d3238f7d90 Fix paths to ChangeLog files adds b02f78f928 Introduce and use make_unique_xstrdup adds fbe4d6650d Automatic date update in version.in
No new revisions were added by this update.
Summary of changes: bfd/version.h | 2 +- gas/ChangeLog | 43 + gas/config/tc-i386.c | 3 + gas/doc/c-i386.texi | 6 +- gas/testsuite/gas/i386/disassem.d | 5 + gas/testsuite/gas/i386/disassem.s | 2 + gas/testsuite/gas/i386/enqcmd-intel.d | 20 + gas/testsuite/gas/i386/enqcmd-inval.l | 10 + gas/testsuite/gas/i386/enqcmd-inval.s | 15 + gas/testsuite/gas/i386/enqcmd.d | 20 + gas/testsuite/gas/i386/enqcmd.s | 15 + gas/testsuite/gas/i386/i386.exp | 14 + gas/testsuite/gas/i386/inval-avx512vl.l | 12 + gas/testsuite/gas/i386/inval-avx512vl.s | 6 + gas/testsuite/gas/i386/vp2intersect-intel.d | 48 + gas/testsuite/gas/i386/vp2intersect-inval-bcast.l | 13 + gas/testsuite/gas/i386/vp2intersect-inval-bcast.s | 19 + gas/testsuite/gas/i386/vp2intersect.d | 48 + gas/testsuite/gas/i386/vp2intersect.s | 51 + gas/testsuite/gas/i386/x86-64-disassem.d | 4 + gas/testsuite/gas/i386/x86-64-disassem.s | 2 + gas/testsuite/gas/i386/x86-64-enqcmd-intel.d | 20 + gas/testsuite/gas/i386/x86-64-enqcmd-inval.l | 9 + gas/testsuite/gas/i386/x86-64-enqcmd-inval.s | 15 + gas/testsuite/gas/i386/x86-64-enqcmd.d | 20 + gas/testsuite/gas/i386/x86-64-enqcmd.s | 15 + gas/testsuite/gas/i386/x86-64-inval-avx512vl.l | 12 + gas/testsuite/gas/i386/x86-64-inval-avx512vl.s | 6 + gas/testsuite/gas/i386/x86-64-vp2intersect-intel.d | 48 + .../gas/i386/x86-64-vp2intersect-inval-bcast.l | 13 + .../gas/i386/x86-64-vp2intersect-inval-bcast.s | 19 + gas/testsuite/gas/i386/x86-64-vp2intersect.d | 48 + gas/testsuite/gas/i386/x86-64-vp2intersect.s | 51 + gdb/ChangeLog | 33 + gdb/NEWS | 3 + gdb/ada-lang.c | 3 +- gdb/breakpoint.c | 5 +- gdb/cli/cli-dump.c | 2 +- gdb/common/filestuff.c | 2 +- gdb/common/gdb_tilde_expand.c | 2 +- gdb/common/gdb_unique_ptr.h | 8 + gdb/common/pathstuff.c | 8 +- gdb/compile/compile-cplus-types.c | 2 +- gdb/completer.c | 19 +- gdb/cp-support.c | 2 +- gdb/doc/ChangeLog | 4 + gdb/doc/python.texi | 5 + gdb/fbsd-tdep.c | 2 +- gdb/gdbserver/ChangeLog | 4 + gdb/gdbserver/server.c | 2 +- gdb/guile/scm-safe-call.c | 2 +- gdb/infcmd.c | 2 +- gdb/linespec.c | 2 +- gdb/mi/mi-main.c | 2 +- gdb/psymtab.c | 2 +- gdb/python/py-type.c | 14 + gdb/symfile.c | 2 +- gdb/target.c | 2 +- gdb/testsuite/ChangeLog | 4 + gdb/testsuite/gdb.python/py-type.exp | 4 + gdb/tui/tui-regs.c | 2 +- gdb/value.c | 6 +- include/ChangeLog | 4 + include/ctf.h | 2 +- libctf/ChangeLog | 34 + libctf/Makefile.am | 4 +- libctf/Makefile.in | 29 +- libctf/config.h.in | 16 +- libctf/configure | 198 +- libctf/configure.ac | 60 +- libctf/ctf-archive.c | 9 +- libctf/ctf-create.c | 16 +- libctf/ctf-decls.h | 43 +- libctf/ctf-dump.c | 2 +- libctf/{qsort_r.c => ctf-qsort_r.c} | 2 +- opcodes/ChangeLog | 50 + opcodes/arm-dis.c | 2 +- opcodes/i386-dis-evex.h | 14 +- opcodes/i386-dis.c | 39 +- opcodes/i386-gen.c | 12 +- opcodes/i386-init.h | 396 +- opcodes/i386-opc.h | 6 + opcodes/i386-opc.tbl | 16 + opcodes/i386-tbl.h | 8006 ++++++++++---------- 84 files changed, 5455 insertions(+), 4289 deletions(-) create mode 100644 gas/testsuite/gas/i386/enqcmd-intel.d create mode 100644 gas/testsuite/gas/i386/enqcmd-inval.l create mode 100644 gas/testsuite/gas/i386/enqcmd-inval.s create mode 100644 gas/testsuite/gas/i386/enqcmd.d create mode 100644 gas/testsuite/gas/i386/enqcmd.s create mode 100644 gas/testsuite/gas/i386/inval-avx512vl.l create mode 100644 gas/testsuite/gas/i386/inval-avx512vl.s create mode 100644 gas/testsuite/gas/i386/vp2intersect-intel.d create mode 100644 gas/testsuite/gas/i386/vp2intersect-inval-bcast.l create mode 100644 gas/testsuite/gas/i386/vp2intersect-inval-bcast.s create mode 100644 gas/testsuite/gas/i386/vp2intersect.d create mode 100644 gas/testsuite/gas/i386/vp2intersect.s create mode 100644 gas/testsuite/gas/i386/x86-64-enqcmd-intel.d create mode 100644 gas/testsuite/gas/i386/x86-64-enqcmd-inval.l create mode 100644 gas/testsuite/gas/i386/x86-64-enqcmd-inval.s create mode 100644 gas/testsuite/gas/i386/x86-64-enqcmd.d create mode 100644 gas/testsuite/gas/i386/x86-64-enqcmd.s create mode 100644 gas/testsuite/gas/i386/x86-64-inval-avx512vl.l create mode 100644 gas/testsuite/gas/i386/x86-64-inval-avx512vl.s create mode 100644 gas/testsuite/gas/i386/x86-64-vp2intersect-intel.d create mode 100644 gas/testsuite/gas/i386/x86-64-vp2intersect-inval-bcast.l create mode 100644 gas/testsuite/gas/i386/x86-64-vp2intersect-inval-bcast.s create mode 100644 gas/testsuite/gas/i386/x86-64-vp2intersect.d create mode 100644 gas/testsuite/gas/i386/x86-64-vp2intersect.s rename libctf/{qsort_r.c => ctf-qsort_r.c} (99%)