This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch devel/modula-2 in repository gcc.
from f828bee4677 Merge branch 'master' into devel/modula-2. adds 1ba397e9f93 c++: __builtin_shufflevector with value-dep expr [PR105353] adds 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] new c55d3d27adb Merge branch 'master' into devel/modula-2.
The 1 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: 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/typeck.cc | 4 +- gcc/fortran/ChangeLog | 7 ++ gcc/fortran/trans-openmp.cc | 2 + gcc/gimple-fold.cc | 3 + gcc/ifcvt.cc | 6 +- gcc/testsuite/ChangeLog | 51 +++++++++ .../g++.dg/cpp1y/lambda-generic-variadic22.C | 15 +++ gcc/testsuite/g++.dg/cpp2a/concepts-requires30.C | 10 ++ gcc/testsuite/g++.dg/ext/builtin-shufflevector-3.C | 23 ++++ .../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 | 2 + 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 +- libstdc++-v3/ChangeLog | 34 ++++++ libstdc++-v3/include/bits/ptr_traits.h | 5 +- libstdc++-v3/include/bits/unique_ptr.h | 124 +++++++++++++++++---- libstdc++-v3/include/std/future | 11 ++ libstdc++-v3/include/std/version | 4 + .../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 ++++++++ .../packaged_task}/cons/deduction.cc | 48 ++++---- 50 files changed, 948 insertions(+), 82 deletions(-) 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/ext/builtin-shufflevector-3.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 [...] copy libstdc++-v3/testsuite/{20_util/function => 30_threads/packaged_task}/cons/de [...]