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-defconfig in repository toolchain/ci/binutils-gdb.
from 0a0a052176 Automatic date update in version.in adds 6c71eb7d70 Normalize Ada ptype to use a single "?" adds 0e7aaa728d [gas][arm] Set context table for '.arch_extension' adds ab7d13f070 Replace the remaining uses of strerror with safe_strerror adds cb51113052 Suppress the "unused function" warning for select_strerror_r adds 26b911fb64 Add gdb_compile_openmp to lib/gdb.exp adds bb47f919bf Add gdb_caching_proc support_nested_function_tests to lib/gdb.exp adds 4c12d93600 OpenMP parallel region scope tests adds 77bb17b649 Minor fix to gdb.prompt documentation adds d1f80fe061 Automatic date update in version.in new 8ff23dba80 ubsan: ia64: left shift of negative value new b8e61daa1a ubsan: epiphany: left shift of negative value new 567607c11f ubsan: xtensa: left shift cannot be represented in type 'int' new 76bba5ee85 ubsan: left shift of cannot be represented in type 'int' new 9d48687b41 aarch64 disassembler infinite loop new a11db3e9f3 ubsan: arc: shift exponent 32 is too large for 32-bit type 'int' new 2fd2b153a3 ubsan: bfin: shift exponent is too large new 0ef562a4b5 ubsan: cr16: left shift cannot be represented in type 'int' new c202f69e51 ubsan: cris: signed integer overflow new d93bba9e0d ubsan: csky: left shift cannot be represented in type 'int' new 159653d8c0 ussan: d30v: index out of bounds new f8a87c78e6 ubsan: h8300: left shift cannot be represented in type 'int' new 334175b693 ubsan: m68k: left shift cannot be represented in type 'int' new 8c9b417187 ubsan: moxie: left shift of negative value new 96f1f60460 ubsan: nios2: left shift cannot be represented in type 'int' new fb4cb4e26d ubsan: ns32k: left shift cannot be represented in type 'int' new 205c426a9b ubsan: s12z: left shift cannot be represented in type 'int' new 66152f1668 ubsan: tic4x: segv and signed shifts new b84f6152ee ubsan: tic6x: shift left of int new 2a81ccbbbf ubsan: v850: left shift cannot be represented in type 'long' new 5c05618a0a ubsan: vax: left shift cannot be represented in type 'int'
The 21 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/ChangeLog | 17 + bfd/cpu-ia64-opc.c | 6 +- bfd/version.h | 2 +- bfd/xtensa-modules.c | 1528 ++++++++------------ cpu/ChangeLog | 5 + cpu/epiphany.cpu | 4 +- gas/ChangeLog | 6 + gas/config/tc-arm.c | 1 + gas/testsuite/gas/arm/mve-arch-ext.d | 7 + gas/testsuite/gas/arm/mve-arch-ext.s | 6 + gdb/ChangeLog | 21 + gdb/ada-typeprint.c | 11 +- gdb/config.in | 4 - gdb/configure | 12 +- gdb/doc/ChangeLog | 5 + gdb/doc/python.texi | 5 +- gdb/gdbserver/ChangeLog | 15 + gdb/gdbserver/Makefile.in | 4 +- gdb/gdbserver/config.in | 4 - gdb/gdbserver/configure | 22 +- gdb/gdbserver/configure.ac | 2 +- gdb/gdbserver/linux-i386-ipa.c | 4 +- gdb/gdbserver/server.h | 6 - gdb/gdbserver/tracepoint.c | 12 +- gdb/gdbserver/utils.c | 2 +- gdb/gdbsupport/agent.c | 4 +- gdb/gdbsupport/common.m4 | 2 +- gdb/gdbsupport/safe-strerror.c | 36 +- gdb/testsuite/ChangeLog | 23 + gdb/testsuite/gdb.ada/unchecked_union.exp | 58 + .../{big_packed_array => unchecked_union}/pck.adb | 0 .../{scalar_storage => unchecked_union}/pck.ads | 0 .../gdb.ada/unchecked_union/unchecked_union.adb | 51 + gdb/testsuite/gdb.threads/omp-par-scope.c | 166 +++ gdb/testsuite/gdb.threads/omp-par-scope.exp | 290 ++++ gdb/testsuite/lib/gdb-utils.exp | 2 +- gdb/testsuite/lib/gdb.exp | 30 +- include/ChangeLog | 6 + include/dis-asm.h | 8 +- include/opcode/tic80.h | 36 +- opcodes/ChangeLog | 91 ++ opcodes/aarch64-dis.c | 2 + opcodes/arc-dis.c | 2 +- opcodes/bfin-dis.c | 29 +- opcodes/cr16-dis.c | 11 +- opcodes/cris-dis.c | 35 +- opcodes/csky-dis.c | 8 +- opcodes/d30v-dis.c | 8 +- opcodes/epiphany-ibld.c | 4 +- opcodes/h8300-dis.c | 5 +- opcodes/m68k-dis.c | 8 +- opcodes/moxie-dis.c | 2 +- opcodes/nios2-dis.c | 2 +- opcodes/ns32k-dis.c | 16 +- opcodes/s12z-opc.c | 4 +- opcodes/tic4x-dis.c | 16 +- opcodes/tic6x-dis.c | 4 +- opcodes/v850-dis.c | 10 +- opcodes/vax-dis.c | 2 +- 59 files changed, 1535 insertions(+), 1147 deletions(-) create mode 100644 gas/testsuite/gas/arm/mve-arch-ext.d create mode 100644 gas/testsuite/gas/arm/mve-arch-ext.s create mode 100644 gdb/testsuite/gdb.ada/unchecked_union.exp copy gdb/testsuite/gdb.ada/{big_packed_array => unchecked_union}/pck.adb (100%) copy gdb/testsuite/gdb.ada/{scalar_storage => unchecked_union}/pck.ads (100%) create mode 100644 gdb/testsuite/gdb.ada/unchecked_union/unchecked_union.adb create mode 100644 gdb/testsuite/gdb.threads/omp-par-scope.c create mode 100644 gdb/testsuite/gdb.threads/omp-par-scope.exp