This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_check_bootstrap/master-aarch64-check_bootstrap_lto in repository toolchain/ci/gcc.
from ac8310dd122 c++: ICE with operator delete [PR104846] adds 97f76b5fc4b c++: Don't allow type-constraint auto(x) [PR104752] adds 4602a494e94 c++: ->template and implicit typedef [PR104608] adds 7c2ac3cebd5 Fix multiple issue in the testcase allocate-1.f90. adds b5417a0ba7e libstdc++: Move closing brace outside #endif [PR104866] adds d8e5fff6b74 [PR103074] LRA: Check new conflicts when splitting hard reg [...] adds d016dd7dbb8 analyzer: fix ICE with -fanalyzer-transitivity [PR104863] adds a8db9b90439 libstdc++: Do not use fast_float for 16-bit size_t [PR104870] adds a717376e99f PR c++/84964: Middle-end patch to expand_call for ICE after sorry. adds 5e28be89665 Daily bump. adds 41bda0036ce Fortran: OpenMP/OpenACC avoid uninit access in size calc fo [...] adds 1375e2b6233 libphobos: Enable on Solaris/SPARC or with /bin/as [PR 103528] adds db494fd68d1 lto-plugin: Honor link_output_name for -foffload-objects file name adds 69619acd8d9 target/104762 - vectorization costs of CONSTRUCTORs adds eb5edcf3f3a tree-optimization/104880 - update-address-taken and cmpxchg
No new revisions were added by this update.
Summary of changes: contrib/ChangeLog | 11 ++ gcc/ChangeLog | 133 +++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 6 + gcc/analyzer/ChangeLog | 53 ++++++++ gcc/analyzer/constraint-manager.cc | 4 + gcc/calls.cc | 2 + gcc/config/i386/i386.cc | 17 ++- gcc/cp/ChangeLog | 39 ++++++ gcc/cp/parser.cc | 5 +- gcc/cp/semantics.cc | 8 +- gcc/cp/typeck2.cc | 8 +- gcc/fortran/trans-openmp.cc | 6 +- gcc/lra-constraints.cc | 9 +- gcc/testsuite/ChangeLog | 143 +++++++++++++++++++++ gcc/testsuite/g++.dg/cpp23/auto-fncast12.C | 8 ++ gcc/testsuite/g++.dg/opt/pr104880.cc | 43 +++++++ gcc/testsuite/g++.dg/other/pr84964.C | 7 + gcc/testsuite/g++.dg/parse/template-keyword3.C | 12 ++ gcc/testsuite/g++.dg/parse/template-keyword4.C | 17 +++ gcc/testsuite/gcc.dg/analyzer/torture/pr104863.c | 14 ++ gcc/testsuite/gcc.target/i386/pr103074.c | 16 +++ .../gfortran.dg/goacc/array-with-dt-1.f90 | 18 ++- .../gfortran.dg/goacc/array-with-dt-1a.f90 | 27 ++++ gcc/testsuite/gfortran.dg/goacc/pr93464-2.f90 | 26 ++++ gcc/testsuite/gfortran.dg/goacc/pr93464.f90 | 12 +- gcc/tree-ssa.cc | 16 ++- libgomp/ChangeLog | 56 ++++++++ libgomp/testsuite/libgomp.fortran/allocate-1.f90 | 26 ++-- libphobos/configure | 12 -- libphobos/configure.ac | 12 -- libphobos/configure.tgt | 3 + libstdc++-v3/ChangeLog | 22 ++++ libstdc++-v3/include/bits/this_thread_sleep.h | 2 +- libstdc++-v3/src/c++17/floating_from_chars.cc | 3 +- lto-plugin/lto-plugin.c | 9 +- 36 files changed, 742 insertions(+), 65 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp23/auto-fncast12.C create mode 100644 gcc/testsuite/g++.dg/opt/pr104880.cc create mode 100644 gcc/testsuite/g++.dg/other/pr84964.C create mode 100644 gcc/testsuite/g++.dg/parse/template-keyword3.C create mode 100644 gcc/testsuite/g++.dg/parse/template-keyword4.C create mode 100644 gcc/testsuite/gcc.dg/analyzer/torture/pr104863.c create mode 100644 gcc/testsuite/gcc.target/i386/pr103074.c create mode 100644 gcc/testsuite/gfortran.dg/goacc/array-with-dt-1a.f90 create mode 100644 gcc/testsuite/gfortran.dg/goacc/pr93464-2.f90