This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/master-arm-bootstrap in repository toolchain/ci/gcc.
from 09d462146b3 Fix PR 103317, ICE after PHI-OPT, minmax_replacement produc [...] adds 0fc859f5efc tree-optimization/102436 - restore loop store motion adds fb15abdc9b6 middle-end/103248 - fix RDIV_EXPR handling with fixed point adds 0e510ab5341 libstdc++: Fix ctype changed after newlib update. adds a84177aff7c c++: Fix up -fstrong-eval-order handling of call arguments [...] adds dd85c42c36a c++/103326 - fix ICE in tsubst with VECTOR_CST adds 74a4ece02df Fix IPA modref ubsan. adds ea2954df43d Fix tree-optimization/103314 : Limit folding of (type) X op [...] adds d686cb0d740 libphobos: Don't call __gthread_key_delete in the emutls de [...] adds f316727e5f6 libphobos: Increase size of defaultStackPages on OSX X86_64 [...] new fd740165e54 c++: nested lambda capturing a capture proxy [PR94376] new cb09215ad0b c++: cp_walk_subtrees simplification for *_CAST_EXPR
The 2 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/cp/cp-gimplify.c | 65 ++++++++- gcc/cp/lambda.c | 19 ++- gcc/cp/pt.c | 1 + gcc/cp/tree.c | 7 - gcc/ipa-modref-tree.h | 5 + gcc/ipa-modref.c | 3 +- gcc/match.pd | 6 +- gcc/testsuite/g++.dg/cpp0x/lambda/lambda-nested9.C | 41 ++++++ gcc/testsuite/g++.dg/cpp1z/eval-order11.C | 89 +++++++++++ gcc/testsuite/g++.dg/pr103326.C | 15 ++ gcc/testsuite/gcc.c-torture/compile/pr103314-1.c | 6 + gcc/testsuite/gcc.dg/pr103248.c | 8 + gcc/testsuite/gcc.dg/torture/20211118-1.c | 27 ++++ gcc/testsuite/gcc.dg/tree-ssa/ssa-lim-18.c | 19 +++ gcc/tree-eh.c | 12 +- gcc/tree-ssa-loop-im.c | 162 +++++++++++++++++++-- libphobos/libdruntime/core/thread/fiber.d | 10 ++ libphobos/libdruntime/gcc/emutls.d | 6 - libstdc++-v3/config/os/newlib/ctype_base.h | 19 ++- 19 files changed, 484 insertions(+), 36 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-nested9.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/eval-order11.C create mode 100644 gcc/testsuite/g++.dg/pr103326.C create mode 100644 gcc/testsuite/gcc.c-torture/compile/pr103314-1.c create mode 100644 gcc/testsuite/gcc.dg/pr103248.c create mode 100644 gcc/testsuite/gcc.dg/torture/20211118-1.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/ssa-lim-18.c