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-mainline-allyesconfig in repository toolchain/ci/gcc.
from af79fe45c3a Put the CL into the right dir. adds 1f43cad984b runtime: scan write barrier buffer conservatively adds fd82b3d64ff PR fortran/68401 Improve allocation error message adds 7b684c1bb1b * doc/include/gpl_v3.texi (Copying): Adjust the link to "W [...] adds baea9b0d567 * doc/ux.texi (User Experience Guidelines): Update reference. adds 2a24fc76a4a 2019-08-17 Thomas Koenig tkoenig@gcc.gnu.org adds 82e6ec4b4db 2019-08-17 Steven G. Kargl kargl@gcc.gnu.org adds c8200e2688b 2019-08-17 Steven G. Kargl kargl@gcc.gnu.org adds 65e74d4af16 2019-08-17 Steven G. Kargl kargl@gcc.gnu.org adds f1d127fa618 2019-08-17 Steven G. Kargl kargl@gcc.gnu.org adds 2d5ff4cbd29 compiler, runtime: allocate defer records on the stack adds a3bc8ca83aa compiler: support new numeric literal syntax new e27959dec03 Daily bump.
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: gcc/ChangeLog | 9 + gcc/DATESTAMP | 2 +- gcc/doc/include/gpl_v3.texi | 2 +- gcc/doc/ux.texi | 2 +- gcc/fortran/ChangeLog | 44 +++- gcc/fortran/decl.c | 6 +- gcc/fortran/match.c | 29 +++ gcc/fortran/module.c | 16 ++ gcc/fortran/primary.c | 10 +- gcc/fortran/trans-decl.c | 12 +- gcc/fortran/trans.c | 68 +++-- gcc/fortran/trans.h | 2 +- gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/lex.cc | 279 ++++++++++++++++----- gcc/go/gofrontend/lex.h | 8 +- gcc/go/gofrontend/runtime.def | 4 + gcc/go/gofrontend/statements.cc | 42 +++- gcc/go/gofrontend/statements.h | 19 +- gcc/testsuite/ChangeLog | 24 ++ gcc/testsuite/gfortran.dg/pr71649.f90 | 8 +- gcc/testsuite/gfortran.dg/pr78719_1.f90 | 29 +++ gcc/testsuite/gfortran.dg/pr78719_2.f90 | 32 +++ gcc/testsuite/gfortran.dg/pr78719_3.f90 | 32 +++ gcc/testsuite/gfortran.dg/pr78739.f90 | 15 ++ gcc/testsuite/gfortran.dg/pr91471.f90 | 14 ++ gcc/testsuite/gfortran.dg/use_15.f90 | 4 +- gcc/testsuite/gfortran.dg/use_rename_8.f90 | 16 +- libgfortran/ChangeLog | 8 + libgfortran/gfortran.map | 5 + libgfortran/libgfortran.h | 4 + libgfortran/runtime/error.c | 46 +++- libgo/go/runtime/mgcmark.go | 5 + libgo/go/runtime/mwbbuf.go | 9 +- libgo/go/runtime/panic.go | 38 +++ libgo/go/runtime/runtime2.go | 9 + libgo/go/runtime/stack_test.go | 62 +++++ libgomp/ChangeLog | 6 + .../libgomp.fortran/appendix-a/a.28.5.f90 | 2 +- 38 files changed, 791 insertions(+), 133 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/pr78719_1.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr78719_2.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr78719_3.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr78739.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr91471.f90 create mode 100644 libgo/go/runtime/stack_test.go