This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu/gnu-release-aarch64-bootstrap_O3 in repository toolchain/ci/gcc.
from 3a63bbbfd29 Daily bump. adds b0d29239bd2 libstdc++: Fix std::any constraints [PR101034] adds 37864c5e6aa libstdc++: Fix constraint on std::optional assignment [PR 100982] adds 1bb1b6a5e70 libstdc++: Adjust expected errors in tests when compiled as C++20 adds 03b6b44428c Daily bump. adds 3e4622628bf Daily bump. adds ec6d6554da7 Fortran: Fix double function call with -fcheck=pointer [PR] adds cedce283c31 tree-optimization/100492 - avoid irreducible regions in loo [...] adds cd712310edc middle-end/100509 - avoid folding constant to aggregate type adds 37d845ac59b ipa/100513 - fix SSA_NAME_DEF_STMT corruption in IPA param manip adds be85daaecc3 ipa/100791 - copy fntype when processing __builtin_va_arg_pack adds b7878d4e179 tree-optimization/100934 - properly mark irreducible region [...]
No new revisions were added by this update.
Summary of changes: gcc/DATESTAMP | 2 +- gcc/fortran/trans-expr.c | 7 +-- gcc/gimple-fold.c | 3 +- gcc/ipa-param-manipulation.c | 4 +- gcc/testsuite/gcc.dg/pr100509.c | 9 ++++ gcc/testsuite/gcc.dg/pr100791.c | 9 ++++ gcc/testsuite/gcc.dg/torture/pr100492.c | 26 ++++++++++ gcc/testsuite/gcc.dg/torture/pr100934.c | 21 ++++++++ gcc/testsuite/gfortran.dg/PR82376.f90 | 59 ++++++++++++++++++++++ gcc/tree-inline.c | 1 + gcc/tree-loop-distribution.c | 10 ++++ gcc/tree-ssa-dom.c | 3 +- libstdc++-v3/ChangeLog | 31 ++++++++++++ libstdc++-v3/include/std/any | 4 +- libstdc++-v3/include/std/optional | 2 +- libstdc++-v3/testsuite/20_util/any/cons/101034.cc | 11 ++++ .../20_util/optional/assignment/100982.cc | 17 +++++++ .../20_util/scoped_allocator/69293_neg.cc | 1 + .../testsuite/20_util/uses_allocator/69293_neg.cc | 3 +- .../testsuite/20_util/uses_allocator/cons_neg.cc | 1 + 20 files changed, 211 insertions(+), 13 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/pr100509.c create mode 100644 gcc/testsuite/gcc.dg/pr100791.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr100492.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr100934.c create mode 100644 gcc/testsuite/gfortran.dg/PR82376.f90 create mode 100644 libstdc++-v3/testsuite/20_util/any/cons/101034.cc create mode 100644 libstdc++-v3/testsuite/20_util/optional/assignment/100982.cc