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-defconfig in repository toolchain/ci/binutils-gdb.
from 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 adds e2a035485a Remove cleanups from coffread.c adds 09e3c4ca13 Update two cleanup comments adds 9799571ecb Change displaced_step_clear_cleanup to a forward_scope_exit adds 32603266e5 C++ify remote notification code adds 37991b4f52 Remove last cleanup from gdbserver adds d01c587766 Remove cleanup from solib-svr4.c adds 2b6ff1c047 Remove last cleanups from solib-svr4.c adds 724127627f Remove last cleanup solib-aix.c adds 6cceac9414 Remove last cleanup from linux-namespaces.c adds 61b3009970 Remove last cleanups from stabsread.c adds c6321f19c5 Use unique_xmalloc_ptr in remote.c adds fe7b42e584 Remove basic cleanup code adds 0ccf4211fd Remove free_current_contents adds a7b1986e13 Use SCOPE_EXIT in write_gcore_file
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 | 263 +++++++++++++++++++ gdb/coffread.c | 115 +++----- gdb/common/cleanups.c | 160 +----------- gdb/common/cleanups.h | 32 +-- gdb/common/common-exceptions.c | 20 +- gdb/common/filestuff.c | 21 -- gdb/common/filestuff.h | 4 - gdb/common/new-op.c | 2 - gdb/dbxread.c | 32 +-- gdb/eval.c | 15 +- gdb/expprint.c | 1 + gdb/f-exp.y | 256 +++++++++++++----- gdb/f-lang.c | 140 +++++++++- gdb/f-lang.h | 34 +++ gdb/gcore.c | 20 +- gdb/gdbserver/ChangeLog | 5 + gdb/gdbserver/server.c | 11 +- gdb/gdbthread.h | 2 +- gdb/infcall.c | 7 +- gdb/inferior.h | 2 +- gdb/infrun.c | 30 +-- gdb/linux-fork.c | 377 ++++++++++++--------------- gdb/linux-fork.h | 2 +- gdb/main.c | 8 - gdb/nat/linux-namespaces.c | 41 ++- gdb/parse.c | 1 + gdb/parser-defs.h | 3 +- gdb/remote-notif.c | 42 +-- gdb/remote-notif.h | 15 +- gdb/remote-sim.c | 5 +- gdb/remote.c | 89 ++----- gdb/solib-aix.c | 10 +- gdb/solib-svr4.c | 57 ++-- gdb/stabsread.c | 81 +++--- gdb/stabsread.h | 14 +- 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 +++ gdb/top.c | 2 +- gdb/utils.c | 29 --- gdb/utils.h | 2 - ld/ChangeLog | 6 + ld/ldexp.c | 44 ++-- 54 files changed, 1804 insertions(+), 971 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