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-next-allnoconfig in repository toolchain/ci/binutils-gdb.
from 9a50f40e82 Automatic date update in version.in adds f4cfa91741 sim: ppc: stub out sim_memory_map adds e343681375 gdb/fortran: Correct the lval type for array elements of int [...] adds 1940319c0e [gdb] Fix internal-error in process_event_stop_test adds fb932b57cb Treat the AArch64 register id_aa64mmfr2_el1 as a core system [...] adds e84c871648 Fix places in the AArch64 opcodes library code where a call [...] adds 3c8c6de21d gdb: user variables with components of dynamic type adds ed20522215 Updated Swedish translation for the opcodes/ subdirectory adds d00f086803 gdb: add missing test for completion of invalid /FMT strings adds 6abd4cf281 gdb: check for empty strings in get_standard_cache_dir/get_s [...] adds 8fc48b7961 Pass void_context_p to parse_expression adds 46f900c065 sim: require a C11 compiler new a7e906e8f5 Automatic date update in version.in
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/version.h | 2 +- gdb/ChangeLog | 29 + gdb/breakpoint.c | 164 +++--- gdb/expression.h | 3 +- gdb/f-lang.c | 6 +- gdb/parse.c | 15 +- gdb/printcmd.c | 10 +- gdb/testsuite/ChangeLog | 26 + gdb/testsuite/gdb.ada/voidctx.exp | 40 ++ gdb/testsuite/gdb.ada/voidctx/pck.adb | 27 + gdb/testsuite/gdb.ada/voidctx/pck.ads | 23 + gdb/testsuite/gdb.ada/voidctx/voidctx.adb | 31 + gdb/testsuite/gdb.base/completion.exp | 5 + gdb/testsuite/gdb.base/empty-host-env-vars.exp | 72 +++ gdb/testsuite/gdb.fortran/intvar-array.exp | 59 ++ gdb/testsuite/gdb.fortran/intvar-array.f90 | 28 + gdb/testsuite/gdb.fortran/intvar-dynamic-types.exp | 97 ++++ gdb/testsuite/gdb.fortran/intvar-dynamic-types.f90 | 32 ++ gdb/value.c | 37 +- gdbsupport/ChangeLog | 6 + gdbsupport/pathstuff.cc | 14 +- opcodes/ChangeLog | 16 + opcodes/aarch64-asm.c | 13 +- opcodes/aarch64-dis.c | 4 +- opcodes/aarch64-opc.c | 2 +- opcodes/po/sv.po | 629 ++++++++++++--------- sim/ChangeLog | 4 + sim/README-HACKING | 28 +- sim/aarch64/ChangeLog | 4 + sim/aarch64/configure | 66 ++- sim/arm/ChangeLog | 4 + sim/arm/configure | 66 ++- sim/avr/ChangeLog | 4 + sim/avr/configure | 66 ++- sim/bfin/ChangeLog | 4 + sim/bfin/configure | 66 ++- sim/bpf/ChangeLog | 4 + sim/bpf/configure | 66 ++- sim/common/ChangeLog | 6 + sim/common/Make-common.in | 3 +- sim/common/acinclude.m4 | 26 + sim/cr16/ChangeLog | 4 + sim/cr16/configure | 66 ++- sim/cris/ChangeLog | 4 + sim/cris/configure | 66 ++- sim/d10v/ChangeLog | 4 + sim/d10v/configure | 66 ++- sim/erc32/ChangeLog | 4 + sim/erc32/configure | 66 ++- sim/frv/ChangeLog | 4 + sim/frv/configure | 66 ++- sim/ft32/ChangeLog | 4 + sim/ft32/configure | 66 ++- sim/h8300/ChangeLog | 4 + sim/h8300/configure | 66 ++- sim/iq2000/ChangeLog | 4 + sim/iq2000/configure | 66 ++- sim/lm32/ChangeLog | 4 + sim/lm32/configure | 66 ++- sim/m32c/ChangeLog | 4 + sim/m32c/configure | 66 ++- sim/m32r/ChangeLog | 4 + sim/m32r/configure | 66 ++- sim/m68hc11/ChangeLog | 4 + sim/m68hc11/configure | 66 ++- sim/mcore/ChangeLog | 4 + sim/mcore/configure | 66 ++- sim/microblaze/ChangeLog | 4 + sim/microblaze/configure | 66 ++- sim/mips/ChangeLog | 4 + sim/mips/configure | 68 ++- sim/mn10300/ChangeLog | 4 + sim/mn10300/configure | 66 ++- sim/moxie/ChangeLog | 4 + sim/moxie/configure | 66 ++- sim/msp430/ChangeLog | 4 + sim/msp430/configure | 66 ++- sim/or1k/ChangeLog | 4 + sim/or1k/configure | 66 ++- sim/ppc/ChangeLog | 4 + sim/ppc/sim_calls.c | 6 + sim/pru/ChangeLog | 4 + sim/pru/configure | 66 ++- sim/rl78/ChangeLog | 4 + sim/rl78/configure | 66 ++- sim/rx/ChangeLog | 4 + sim/rx/configure | 66 ++- sim/sh/ChangeLog | 4 + sim/sh/configure | 66 ++- sim/sh64/ChangeLog | 4 + sim/sh64/configure | 66 ++- sim/v850/ChangeLog | 4 + sim/v850/configure | 66 ++- 93 files changed, 2773 insertions(+), 796 deletions(-) create mode 100644 gdb/testsuite/gdb.ada/voidctx.exp create mode 100644 gdb/testsuite/gdb.ada/voidctx/pck.adb create mode 100644 gdb/testsuite/gdb.ada/voidctx/pck.ads create mode 100644 gdb/testsuite/gdb.ada/voidctx/voidctx.adb create mode 100644 gdb/testsuite/gdb.base/empty-host-env-vars.exp create mode 100644 gdb/testsuite/gdb.fortran/intvar-array.exp create mode 100644 gdb/testsuite/gdb.fortran/intvar-array.f90 create mode 100644 gdb/testsuite/gdb.fortran/intvar-dynamic-types.exp create mode 100644 gdb/testsuite/gdb.fortran/intvar-dynamic-types.f90