This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk_tx1/llvm-release-aarch64-spec2k6-Oz in repository toolchain/ci/gcc.
from b82d7465fb3 [Fortran] Fix name conflict check for use-assoc (PR 92736) adds b7c47eee95a Daily bump. adds 3d85846b179 Sync gcc-changelog scripts. adds e780e940a9f As well as the PR this patch fixes problems in handling cla [...] adds 1fa1430d1cf Fix failures with -m32 and some memory leaks. adds b66dc7d363d This patch fixes PR96325. See the explanatory comment in th [...] adds 4d3d6343903 Change testcase for pr96325 from run to compile. adds ef7d053ea33 PR fortran/78746 - invalid access after error recovery adds 6fab822465a Daily bump. adds 0865ed377b0 Daily bump. adds 8e4642602b0 Daily bump. adds 390ecc23210 Daily bump. adds 403feb626fe libstdc++: Remove accidental -std=gnu++17 from test adds b1dba8a228e libstdc++: improve how pretty printers find node types (PR 91997) adds af0dd3ec611 libstdc++: Fix pretty printers script and tests adds 94a665fcc68 libstdc++: Fix unique_ptr pretty printer for empty classes adds 01f53867189 libstdc++: Fix compatibility support in unique_ptr pretty printer adds 3613228af82 libstdc++: Fix std::any pretty printer [PR 68735] adds 78ba8511aca libstdc++: Only use __builtin_sprintf if supported [PR 96083] adds 49e4535f983 libstdc++: Fix filesystem::path pretty printer test failure adds 00e948106cc libstdc++: Fix misnamed configure option in manual adds cae446efd7c Daily bump. adds 1bf384c36a7 Daily bump.
No new revisions were added by this update.
Summary of changes: contrib/ChangeLog | 8 + contrib/gcc-changelog/git_commit.py | 57 ++- contrib/gcc-changelog/git_email.py | 6 +- contrib/gcc-changelog/git_repository.py | 6 +- contrib/gcc-changelog/test_email.py | 24 +- contrib/gcc-changelog/test_patches.txt | 81 +++- gcc/ChangeLog | 6 + gcc/DATESTAMP | 2 +- gcc/fortran/ChangeLog | 91 ++++ gcc/fortran/primary.c | 13 +- gcc/fortran/resolve.c | 4 +- gcc/fortran/trans-array.c | 457 +++++++++++++++------ gcc/fortran/trans-expr.c | 337 +++++++++++++-- gcc/fortran/trans.c | 9 +- gcc/fortran/trans.h | 3 + gcc/testsuite/ChangeLog | 37 ++ gcc/testsuite/gfortran.dg/class_allocate_25.f90 | 58 +++ gcc/testsuite/gfortran.dg/class_assign_4.f90 | 183 +++++++++ gcc/testsuite/gfortran.dg/dependency_60.f90 | 19 + gcc/testsuite/gfortran.dg/pr91589.f90 | 2 +- gcc/testsuite/gfortran.dg/pr96325.f90 | 21 + .../gfortran.dg/unlimited_polymorphic_32.f03 | 59 +++ libstdc++-v3/ChangeLog | 106 +++++ libstdc++-v3/doc/html/manual/configure.html | 3 +- libstdc++-v3/doc/xml/manual/configure.xml | 3 +- libstdc++-v3/include/ext/throw_allocator.h | 21 + libstdc++-v3/python/libstdcxx/v6/printers.py | 196 ++++++--- .../filesystem/filesystem_error/cons.cc | 2 +- .../testsuite/libstdc++-prettyprinters/59161.cc | 2 - .../testsuite/libstdc++-prettyprinters/80276.cc | 3 + .../testsuite/libstdc++-prettyprinters/91997.cc | 53 +++ .../testsuite/libstdc++-prettyprinters/compat.cc | 28 +- .../testsuite/libstdc++-prettyprinters/cxx11.cc | 20 + .../libstdc++-prettyprinters/filesystem-ts.cc | 39 ++ 34 files changed, 1719 insertions(+), 240 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/class_allocate_25.f90 create mode 100644 gcc/testsuite/gfortran.dg/class_assign_4.f90 create mode 100644 gcc/testsuite/gfortran.dg/dependency_60.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr96325.f90 create mode 100644 gcc/testsuite/gfortran.dg/unlimited_polymorphic_32.f03 create mode 100644 libstdc++-v3/testsuite/libstdc++-prettyprinters/91997.cc create mode 100644 libstdc++-v3/testsuite/libstdc++-prettyprinters/filesystem-ts.cc