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/ci/binutils-gdb.
from 06b5b831a0 Change the_dummy_target to be a global adds ea38e5df77 Remove some Python 3 #ifs adds 2d0d5fc6f0 Automatic date update in version.in adds aa3cfbda2f Fortran function calls with arguments adds 219d6836e9 Fix a segmentation fault triggered by disassembling an EFi f [...] adds c3734e093a Testsuite: Ensure changing directory does not break the log file adds 67a3048c0f Fix remote-sim.c build after warn-unused-result change adds 912ebfa0d7 Allow the use of the ORIGIN and LENGTH attributes in express [...] adds 84ec972406 gdb/fortran: Remove some duplicate tests adds dd9f2c763b gdb/fortran: Cleanup code for parsing logical constants adds c8f9160408 gdb/fortran: Simplify handling of Fortran dot operations and [...] adds 9dad4a58a1 gdb/fortran: Add new function to evaluate Fortran expressions adds e454224fa8 gdb/fortran: Enable debugging of the Fortran parser adds 4d00f5d8f6 gdb/fortran: Add Fortran 'kind' intrinsic and keyword adds 3be47f7aa9 gdb/fortran: Expand the set of types that support (kind=N) adds 067630bdb5 gdb/fortran: Add builtin 8-byte integer type with (kind=8) support adds 4a270568d9 gdb/fortran: Use TYPE_CODE_CHAR for character types adds 0841c79a3d gdb/fortran: Add support for the ABS intrinsic function adds efbecbc143 gdb/fortran: Handle older TYPE*SIZE typenames adds 72f31aea9e Make "checkpoint" not rely on inferior_ptid adds 06974e6c05 C++ify fork_info, use std::list adds e52c971f17 linux-fork.c: rewrite inf_has_multiple_threads adds b7e60d85da Eliminate fork_info::clobber_regs
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 7 + bfd/coffgen.c | 5 +- bfd/dwarf2.c | 2 +- bfd/version.h | 2 +- gdb/ChangeLog | 144 ++++++++++ gdb/eval.c | 15 +- gdb/expprint.c | 1 + gdb/f-exp.y | 256 +++++++++++++----- gdb/f-lang.c | 140 +++++++++- gdb/f-lang.h | 34 +++ gdb/infcall.c | 7 +- gdb/linux-fork.c | 377 ++++++++++++--------------- gdb/linux-fork.h | 2 +- gdb/parse.c | 1 + gdb/parser-defs.h | 3 +- gdb/python/py-prettyprint.c | 5 - gdb/python/py-utils.c | 11 +- gdb/remote-sim.c | 5 +- gdb/std-operator.def | 1 + gdb/testsuite/ChangeLog | 57 +++- gdb/testsuite/gdb.fortran/dot-ops.exp | 123 +++++++++ gdb/testsuite/gdb.fortran/function-calls.exp | 103 ++++++++ gdb/testsuite/gdb.fortran/function-calls.f90 | 242 +++++++++++++++++ gdb/testsuite/gdb.fortran/intrinsics.exp | 51 ++++ gdb/testsuite/gdb.fortran/intrinsics.f90 | 39 +++ gdb/testsuite/gdb.fortran/type-kinds.exp | 98 +++++++ gdb/testsuite/gdb.fortran/types.exp | 9 +- gdb/testsuite/lib/gdb.exp | 36 +++ ld/ChangeLog | 6 + ld/ldexp.c | 44 ++-- 30 files changed, 1483 insertions(+), 343 deletions(-) create mode 100644 gdb/testsuite/gdb.fortran/dot-ops.exp create mode 100644 gdb/testsuite/gdb.fortran/function-calls.exp create mode 100644 gdb/testsuite/gdb.fortran/function-calls.f90 create mode 100644 gdb/testsuite/gdb.fortran/intrinsics.exp create mode 100644 gdb/testsuite/gdb.fortran/intrinsics.f90 create mode 100644 gdb/testsuite/gdb.fortran/type-kinds.exp