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-aarch64-next-allnoconfig in repository toolchain/ci/binutils-gdb.
from 307f2595dd Linker: If the type is pie the results should be an executab [...] adds 9fcff41582 Automatic date update in version.in adds c4694f172b Enable support to Intel Keylocker instructions new ebe824f5dc Remove some manual memory management from compile interface new 0dbf6ee6a0 Use new/delete for do_module_cleanup new e947a8482a Introduce and use compile_module_up new e616f60a6b Transfer module ownership to do_module_cleanup new 92677124d9 Simplify compile_module cleanup new bac51ab78d Avoid manual memory management of argv arrays in gdb/compile new 20a5fcbd5b Handle bit offset and bit size in base types new afdcafe891 CSKY: Add objdump option -M abi-names.
The 8 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/version.h | 2 +- gas/ChangeLog | 48 + gas/NEWS | 2 + gas/config/tc-csky.c | 641 +- gas/config/tc-i386.c | 10 +- gas/doc/c-i386.texi | 5 + gas/testsuite/gas/csky/all.d | 2 +- gas/testsuite/gas/csky/cskyv2_all.d | 36 +- gas/testsuite/gas/csky/cskyv2_all.s | 24 +- gas/testsuite/gas/csky/trust.d | 9 +- gas/testsuite/gas/csky/trust.s | 1 - gas/testsuite/gas/i386/i386.exp | 6 + gas/testsuite/gas/i386/keylocker-intel.d | 34 + gas/testsuite/gas/i386/keylocker.d | 34 + gas/testsuite/gas/i386/keylocker.s | 33 + gas/testsuite/gas/i386/property-10.d | 9 + gas/testsuite/gas/i386/property-10.s | 2 + gas/testsuite/gas/i386/x86-64-keylocker-intel.d | 34 + gas/testsuite/gas/i386/x86-64-keylocker.d | 34 + gas/testsuite/gas/i386/x86-64-keylocker.s | 33 + gas/testsuite/gas/i386/x86-64-property-10.d | 10 + gdb/ChangeLog | 91 + gdb/compile/compile-c-types.c | 4 +- gdb/compile/compile-cplus-types.c | 39 +- gdb/compile/compile-object-load.c | 108 +- gdb/compile/compile-object-load.h | 20 +- gdb/compile/compile-object-run.c | 78 +- gdb/compile/compile-object-run.h | 2 +- gdb/compile/compile.c | 82 +- gdb/dwarf2/read.c | 20 + gdb/gdbtypes.c | 24 + gdb/gdbtypes.h | 43 +- gdb/printcmd.c | 16 +- gdb/testsuite/ChangeLog | 5 + gdb/testsuite/gdb.dwarf2/intbits.c | 48 + gdb/testsuite/gdb.dwarf2/intbits.exp | 201 + gdb/utils.h | 43 + gdb/value.c | 37 +- opcodes/ChangeLog | 55 + opcodes/csky-dis.c | 148 +- opcodes/csky-opc.h | 529 +- opcodes/i386-dis.c | 107 +- opcodes/i386-gen.c | 10 + opcodes/i386-init.h | 394 +- opcodes/i386-opc.h | 6 + opcodes/i386-opc.tbl | 16 + opcodes/i386-tbl.h | 8136 ++++++++++++----------- 47 files changed, 6297 insertions(+), 4974 deletions(-) create mode 100644 gas/testsuite/gas/i386/keylocker-intel.d create mode 100644 gas/testsuite/gas/i386/keylocker.d create mode 100644 gas/testsuite/gas/i386/keylocker.s create mode 100644 gas/testsuite/gas/i386/property-10.d create mode 100644 gas/testsuite/gas/i386/property-10.s create mode 100644 gas/testsuite/gas/i386/x86-64-keylocker-intel.d create mode 100644 gas/testsuite/gas/i386/x86-64-keylocker.d create mode 100644 gas/testsuite/gas/i386/x86-64-keylocker.s create mode 100644 gas/testsuite/gas/i386/x86-64-property-10.d create mode 100644 gdb/testsuite/gdb.dwarf2/intbits.c create mode 100644 gdb/testsuite/gdb.dwarf2/intbits.exp