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-mainline-allyesconfig in repository toolchain/ci/gcc.
from 4a5ff2b56bf c++: Add testcase for already fixed PR97105 adds 239601c53b0 Daily bump. adds 83858ba1db3 Increase rtx cost of sse_to_integer in skylake_cost. adds dea470d0915 c++: std::is_constant_evaluated inside constraint [PR97051] adds e5d72c840a2 c++: Fix self-mapping in map_arguments [PR96531, PR97103] adds c66c004ad61 x86: Add a testcase for PR target/96861 adds f7d2d4be765 PR fortran/97036 - [F2018] Allow ELEMENTAL RECURSIVE proced [...] adds cba079f354a Move loop and switch tree data structures from cp/ to c-family/. adds 83e037364e0 Use C-style loop lowering instead of C++-style. adds a85e5696a31 Work around bootstrap failure in Fortran front end. adds 3696a50beeb Change C front end to emit structured loop and switch tree nodes.
No new revisions were added by this update.
Summary of changes: ChangeLog | 4 + gcc/ChangeLog | 83 ++++ gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 10 + gcc/c-family/c-common.c | 24 ++ gcc/c-family/c-common.def | 24 ++ gcc/c-family/c-common.h | 53 ++- gcc/c-family/c-dump.c | 38 ++ gcc/c-family/c-gimplify.c | 422 ++++++++++++++++++ gcc/c-family/c-pretty-print.c | 92 +++- gcc/c/c-decl.c | 18 +- gcc/c/c-lang.h | 3 +- gcc/c/c-objc-common.h | 2 + gcc/c/c-parser.c | 125 +++--- gcc/c/c-tree.h | 21 +- gcc/c/c-typeck.c | 227 +++------- gcc/config/i386/x86-tune-costs.h | 2 +- gcc/cp/ChangeLog | 10 + gcc/cp/constraint.cc | 7 +- gcc/cp/cp-gimplify.c | 469 ++++----------------- gcc/cp/cp-objcp-common.c | 13 +- gcc/cp/cp-tree.def | 23 - gcc/cp/cp-tree.h | 40 -- gcc/cp/cxx-pretty-print.c | 78 ---- gcc/cp/dump.c | 31 -- gcc/cp/pt.c | 43 +- gcc/doc/generic.texi | 56 ++- gcc/fortran/interface.c | 4 + gcc/fortran/symbol.c | 2 +- gcc/objc/objc-act.c | 6 +- gcc/testsuite/ChangeLog | 53 +++ gcc/testsuite/g++.dg/cpp2a/concepts-ttp2.C | 11 + gcc/testsuite/g++.dg/cpp2a/concepts-variadic1.C | 28 ++ .../g++.dg/cpp2a/is-constant-evaluated11.C | 16 + gcc/testsuite/gcc.dg/gomp/block-7.c | 12 +- gcc/testsuite/gcc.target/i386/pr95021-3.c | 2 +- gcc/testsuite/gcc.target/i386/pr96861.c | 38 ++ gcc/testsuite/gfortran.dg/pr97036.f90 | 27 ++ 38 files changed, 1248 insertions(+), 871 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-ttp2.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-variadic1.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/is-constant-evaluated11.C create mode 100644 gcc/testsuite/gcc.target/i386/pr96861.c create mode 100644 gcc/testsuite/gfortran.dg/pr97036.f90