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-allyesconfig in repository toolchain/ci/binutils-gdb.
from 88c9190b4e Fix a spelling mistake: "complaint" instead of "compliant". adds ff6c8b354d Small fix to gdb.Value constructor doc adds 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 [...] new 84ec972406 gdb/fortran: Remove some duplicate tests new dd9f2c763b gdb/fortran: Cleanup code for parsing logical constants new c8f9160408 gdb/fortran: Simplify handling of Fortran dot operations and [...] new 9dad4a58a1 gdb/fortran: Add new function to evaluate Fortran expressions new e454224fa8 gdb/fortran: Enable debugging of the Fortran parser new 4d00f5d8f6 gdb/fortran: Add Fortran 'kind' intrinsic and keyword new 3be47f7aa9 gdb/fortran: Expand the set of types that support (kind=N) new 067630bdb5 gdb/fortran: Add builtin 8-byte integer type with (kind=8) support new 4a270568d9 gdb/fortran: Use TYPE_CODE_CHAR for character types new 0841c79a3d gdb/fortran: Add support for the ABS intrinsic function new efbecbc143 gdb/fortran: Handle older TYPE*SIZE typenames new 72f31aea9e Make "checkpoint" not rely on inferior_ptid new 06974e6c05 C++ify fork_info, use std::list new e52c971f17 linux-fork.c: rewrite inf_has_multiple_threads new b7e60d85da Eliminate fork_info::clobber_regs
The 15 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 | 7 + bfd/coffgen.c | 5 +- bfd/dwarf2.c | 2 +- bfd/version.h | 2 +- gdb/ChangeLog | 150 +++++++++++ gdb/doc/ChangeLog | 5 + gdb/doc/python.texi | 2 +- 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/target.c | 11 +- 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 ++-- 33 files changed, 1501 insertions(+), 349 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