This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk_gnu_eabi_stm32/gnu_eabi-master-arm_eabi-coremark-O3_LTO in repository toolchain/ci/gcc.
from 7964ab6c364 fortran: Use pointer arithmetic to index arrays [PR102043] adds 7c21556daf3 libstdc++: Make atomic notify_one and notify_all non-const adds ab54f6007c7 Daily bump. adds 1ceddd7497e i386: Improve ix86_expand_int_movcc [PR105338] adds afe0b5b7ce5 Daily bump. adds fa5cd7102da fortran: Detect duplicate unlimited polymorphic types [PR103662] adds 6b7441a46c7 [committed] exec-stack warning for test which wants executa [...] adds bd64885971b Daily bump. adds 3c940d42701 AVX512F: Add missing macro for mask(z?)_scalf_s[sd] [PR 105339] adds 4f77738c3b4 rtl-optimization/105231 - distribute_notes and REG_EH_REGION adds b6e22db8564 target/89125 - BSD and math functions adds ab91c10792c tree-optimization/100810 - avoid undefs in IVOPT rewrites adds f0e170f72f8 tree-optimization/105368 - avoid overflow in powi_cost adds 6cc26f3037a testsuite: add additional option to force DSE execution [PR103662] adds 71999fde2a4 libstdc++: Add pretty printer for std::initializer_list adds 46cd445fc07 contrib: filter out a new Clang warning adds 362e2a9c629 Retain existing range knowledge when prefilling statements. adds 235f88dbc34 docs: Fix 'modff' reference in extend.texi 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) new 68fd1c9f22a contrib: filter out a new Clang warning
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/filter-clang-warnings.py | 6 +- gcc/ChangeLog | 26 +++++ gcc/DATESTAMP | 2 +- gcc/combine.cc | 81 +++++++++++--- gcc/config/freebsd.h | 2 +- gcc/config/i386/avx512fintrin.h | 76 +++++++++---- gcc/config/i386/i386-expand.cc | 25 ++++- gcc/cp/typeck.cc | 4 +- gcc/doc/extend.texi | 2 +- gcc/fortran/ChangeLog | 47 ++++++++ gcc/fortran/interface.cc | 19 +++- gcc/fortran/resolve.cc | 5 +- gcc/gimple-range.cc | 4 + gcc/targhooks.cc | 14 +++ gcc/targhooks.h | 1 + gcc/testsuite/ChangeLog | 45 ++++++++ gcc/testsuite/g++.dg/ext/builtin-shufflevector-3.C | 23 ++++ gcc/testsuite/g++.dg/pr105276.C | 18 +++ gcc/testsuite/gcc.dg/lto/pr94157_0.c | 2 +- gcc/testsuite/gcc.dg/torture/pr100810.c | 34 ++++++ gcc/testsuite/gcc.dg/torture/pr105231.c | 15 +++ gcc/testsuite/gcc.dg/torture/pr105337.c | 31 ++++++ gcc/testsuite/gcc.target/i386/pr105338.c | 26 +++++ gcc/testsuite/gcc.target/i386/sse-14.c | 4 + .../gfortran.dg/unlimited_polymorphic_3.f03 | 56 +++++++--- gcc/tree-ssa-loop-ivopts.cc | 31 ++++++ gcc/tree-ssa-math-opts.cc | 2 +- libstdc++-v3/ChangeLog | 14 +++ libstdc++-v3/include/bits/atomic_base.h | 8 +- libstdc++-v3/include/bits/ptr_traits.h | 5 +- libstdc++-v3/include/bits/unique_ptr.h | 124 +++++++++++++++++---- libstdc++-v3/include/std/atomic | 16 +-- libstdc++-v3/include/std/future | 11 ++ libstdc++-v3/include/std/version | 4 + libstdc++-v3/python/libstdcxx/v6/printers.py | 24 +++- .../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 ++++++++ .../29_atomics/atomic/wait_notify/102994.cc | 4 +- .../30_threads/packaged_task/cons/deduction.cc | 85 ++++++++++++++ .../testsuite/libstdc++-prettyprinters/cxx11.cc | 6 + 44 files changed, 1147 insertions(+), 109 deletions(-) create mode 100644 gcc/testsuite/g++.dg/ext/builtin-shufflevector-3.C create mode 100644 gcc/testsuite/g++.dg/pr105276.C create mode 100644 gcc/testsuite/gcc.dg/torture/pr100810.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr105231.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr105337.c create mode 100644 gcc/testsuite/gcc.target/i386/pr105338.c 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 [...] create mode 100644 libstdc++-v3/testsuite/30_threads/packaged_task/cons/deduction.cc