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_profiled in repository toolchain/ci/gcc.
from a5cee0480c1 libstdc++: Add deduction guides for std::packaged_task [PR105375] adds 2fbdcf5e58c libstdc++: Implement constexpr std::unique_ptr for C++23 (P2273R3) adds 68fd1c9f22a contrib: filter out a new Clang warning adds b2202431910 fortran: Fix up gfc_trans_oacc_construct [PR104717] adds a5dc2641add gimple-fold: fix further missing stmt locations [PR104308] adds 6ad3ca0077e analyzer: fix ICEs on complex constants [PR105365,105366] adds 98de0da6035 Daily bump. adds 288e4c64f6b c++: partial ordering with dependent NTTP type [PR105289] adds c83b9c54d9d c++: ICE with requires-expr and -Wsequence-point [PR105304] adds 65735d21ac4 c++: generic lambda fn parm pack [PR104624] adds 57a957cb71c libgomp: Fix up two non-GOMP_USE_ALIGNED_WORK_SHARES relate [...] adds 22c24ba48a2 testsuite: Improve unlimited_polymorphic_3.f03 [PR103662] adds 5face32b7f4 i386: Fix up ICE with -mveclibabi={acml,svml} [PR105367] adds 1b45ae16fff testsuite: Fix up g++.target/i386/vec-tmpl1.C testcase [PR65211] adds d4836ac9acd reassoc: Don't call fold_convert if !fold_convertible_p [PR105374] adds 7d31c678d68 ifcvt: Improve noce_try_store_flag_mask [PR105314] adds ad56a60f58c rs6000: Make the has_arch target selectors actually work adds e3c5e8360b4 libstdc++: Define std::hashstd::filesystem::path (LWG 3657) adds 41ccd683f00 libstdc++: Add std::atomic<shared_ptr>(nullptr_t) construct [...] adds 796b7cbac3d libphobos: Don't call free on the TLS array in the emutls d [...] adds cd4acb8cd9e lto: use diagnostics_context in print_lto_docs_link adds b6a48401da5 c++: decltype of non-dependent call of class type [PR105386]
No new revisions were added by this update.
Summary of changes: contrib/ChangeLog | 10 ++ contrib/filter-clang-warnings.py | 3 +- gcc/ChangeLog | 69 ++++++++++++ gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 11 ++ gcc/analyzer/svalue.cc | 30 +++-- gcc/c-family/c-common.cc | 2 +- gcc/config/i386/i386.cc | 6 +- gcc/cp/ChangeLog | 7 ++ gcc/cp/pt.cc | 11 +- gcc/cp/semantics.cc | 2 +- gcc/fortran/ChangeLog | 7 ++ gcc/fortran/trans-openmp.cc | 2 + gcc/gimple-fold.cc | 3 + gcc/ifcvt.cc | 6 +- gcc/lto-wrapper.cc | 20 +++- gcc/testsuite/ChangeLog | 51 +++++++++ gcc/testsuite/g++.dg/cpp0x/decltype81.C | 15 +++ .../g++.dg/cpp1y/lambda-generic-variadic22.C | 15 +++ gcc/testsuite/g++.dg/cpp2a/concepts-requires30.C | 10 ++ .../g++.dg/template/partial-specialization11.C | 11 ++ .../g++.dg/template/partial-specialization12.C | 12 ++ gcc/testsuite/g++.target/i386/vec-tmpl1.C | 1 + gcc/testsuite/gcc.dg/analyzer/pr104308.c | 13 ++- gcc/testsuite/gcc.dg/analyzer/pr105365.c | 17 +++ gcc/testsuite/gcc.dg/analyzer/pr105366.c | 19 ++++ gcc/testsuite/gcc.target/i386/pr105367.c | 12 ++ gcc/testsuite/gcc.target/riscv/pr105314.c | 12 ++ gcc/testsuite/gfortran.dg/goacc/pr104717.f90 | 22 ++++ .../goacc/privatization-1-compute-loop.f90 | 7 +- .../gfortran.dg/unlimited_polymorphic_3.f03 | 6 +- gcc/testsuite/lib/target-supports.exp | 30 ++--- gcc/tree-ssa-reassoc.cc | 6 +- libgomp/ChangeLog | 6 + libgomp/loop.c | 7 +- libgomp/loop_ull.c | 7 +- libgomp/sections.c | 7 +- .../libgomp.oacc-fortran/privatized-ref-2.f90 | 7 ++ libgomp/work.c | 4 +- libphobos/libdruntime/gcc/emutls.d | 8 +- libstdc++-v3/ChangeLog | 34 ++++++ libstdc++-v3/include/bits/fs_path.h | 10 ++ libstdc++-v3/include/bits/ptr_traits.h | 5 +- libstdc++-v3/include/bits/shared_ptr_atomic.h | 4 + libstdc++-v3/include/bits/unique_ptr.h | 124 +++++++++++++++++---- libstdc++-v3/include/std/version | 4 + .../20_util/shared_ptr/atomic/atomic_shared_ptr.cc | 2 + .../20_util/unique_ptr/assign/constexpr.cc | 48 ++++++++ .../20_util/unique_ptr/comparison/constexpr.cc | 73 ++++++++++++ .../20_util/unique_ptr/cons/constexpr_c++20.cc | 85 ++++++++++++++ .../20_util/unique_ptr/creation/constexpr.cc | 34 ++++++ .../20_util/unique_ptr/modifiers/constexpr.cc | 68 +++++++++++ .../unique_ptr/specialized_algorithms/constexpr.cc | 46 ++++++++ .../27_io/filesystem/path/nonmember/hash_value.cc | 10 ++ 54 files changed, 964 insertions(+), 79 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/decltype81.C create mode 100644 gcc/testsuite/g++.dg/cpp1y/lambda-generic-variadic22.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-requires30.C create mode 100644 gcc/testsuite/g++.dg/template/partial-specialization11.C create mode 100644 gcc/testsuite/g++.dg/template/partial-specialization12.C create mode 100644 gcc/testsuite/gcc.dg/analyzer/pr105365.c create mode 100644 gcc/testsuite/gcc.dg/analyzer/pr105366.c create mode 100644 gcc/testsuite/gcc.target/i386/pr105367.c create mode 100644 gcc/testsuite/gcc.target/riscv/pr105314.c create mode 100644 gcc/testsuite/gfortran.dg/goacc/pr104717.f90 create mode 100644 libstdc++-v3/testsuite/20_util/unique_ptr/assign/constexpr.cc create mode 100644 libstdc++-v3/testsuite/20_util/unique_ptr/comparison/constexpr.cc create mode 100644 libstdc++-v3/testsuite/20_util/unique_ptr/cons/constexpr_c++20.cc create mode 100644 libstdc++-v3/testsuite/20_util/unique_ptr/creation/constexpr.cc create mode 100644 libstdc++-v3/testsuite/20_util/unique_ptr/modifiers/constexpr.cc create mode 100644 libstdc++-v3/testsuite/20_util/unique_ptr/specialized_algorithm [...]