This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu/gnu-master-arm-bootstrap_ubsan in repository toolchain/ci/gcc.
from 76e990fd211 stor-layout: Don't create DECL_BIT_FIELD_REPRESENTATIVE for [...] adds 92edc4a7684 libstdc++: Suppress -Wstringop-overread warning in test adds 17a4bee01c3 tree-optimization/101112 - fix pattern stmt def lookup in S [...] adds cfa1f8226f2 gcc/configure.ac: fix register issue for global_load assemb [...] adds f58d03b5df2 arm: Fix multilib mapping for CDE extensions [PR100856]. adds 0532452dcd1 libstdc++: Replace incorrect static assertion in std::reduc [...] adds 86606d2ab73 analyzer: refactor custom_event, introducing precanned_cust [...] adds 1aff29d4260 analyzer: add region_model_manager::get_or_create_int_cst adds 83faf7eacd2 libstdc++: Implement LWG 3557 change to convertible_to adds 3bb85b86872 analyzer: fix issue with symbolic reads with concrete bindings adds 6fc54339634 Fortran - fix conversion to result type for the min/max intrinsic adds 93022946df2 MAINTAINERS: Add myself for write after approval adds 870b674f72d Remove poor value computations. adds cb448ade74d Calculate a global definition if one has not been registered. adds 629cbc682a7 [committed] More useless code elimination on the H8 adds a798b3f15c4 Fix p10 fusion regtests adds cc9c94d43dc libstdc++: Reduce ranges::minmax/minmax_element comparison [...] adds c5581d4842e Daily bump. adds 4123650bd0a libstdc++: Implement LWG 3546 changes to common_iterator adds 15736576df7 libstdc++: Implement LWG 3553 changes to split_view adds bc046a60cfd libstdc++: Implement LWG 3555 changes to transform/elements_view new b245d1c3d6f Daily bump.
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: ChangeLog | 4 + MAINTAINERS | 1 + gcc/ChangeLog | 92 +++++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 286 +++++++++++++++ gcc/analyzer/ChangeLog | 35 ++ gcc/analyzer/checker-path.cc | 6 +- gcc/analyzer/checker-path.h | 22 +- gcc/analyzer/diagnostic-manager.cc | 2 +- gcc/analyzer/engine.cc | 2 +- gcc/analyzer/region-model-manager.cc | 14 +- gcc/analyzer/region-model.cc | 11 +- gcc/analyzer/region-model.h | 1 + gcc/analyzer/sm-signal.cc | 7 +- gcc/analyzer/store.cc | 14 +- gcc/common/config/arm/arm-common.c | 47 ++- gcc/config.in | 6 + gcc/config/arm/arm-cpus.in | 2 + gcc/config/arm/arm.h | 15 + gcc/config/arm/arm.opt | 6 + gcc/config/arm/t-rmprofile | 25 +- gcc/config/gcn/gcn.c | 17 +- gcc/config/h8300/h8300.c | 2 +- gcc/config/h8300/logical.md | 22 +- gcc/configure | 27 ++ gcc/configure.ac | 22 ++ gcc/fortran/ChangeLog | 7 + gcc/fortran/trans-intrinsic.c | 5 +- gcc/gimple-range-cache.cc | 141 +------- gcc/gimple-range-cache.h | 15 +- gcc/gimple-range.cc | 2 - gcc/gimple-range.h | 1 - gcc/testsuite/ChangeLog | 32 ++ gcc/testsuite/gcc.dg/analyzer/symbolic-7.c | 44 +++ gcc/testsuite/gcc.target/arm/acle/pr100856.c | 10 + gcc/testsuite/gcc.target/arm/multilib.exp | 113 ++++++ .../gcc.target/powerpc/fusion-p10-2logical.c | 401 ++++++++------------- .../gcc.target/powerpc/fusion-p10-addadd.c | 17 +- .../gcc.target/powerpc/fusion-p10-ldcmpi.c | 10 +- .../gcc.target/powerpc/fusion-p10-logadd.c | 129 ++----- gcc/testsuite/gfortran.dg/min0_max0_1.f90 | 9 + gcc/testsuite/gfortran.dg/min0_max0_2.f90 | 10 + gcc/tree-vect-slp.c | 10 +- libstdc++-v3/ChangeLog | 136 +++++++ libstdc++-v3/include/bits/ranges_algo.h | 113 ++++-- libstdc++-v3/include/bits/stl_iterator.h | 5 +- libstdc++-v3/include/std/concepts | 4 +- libstdc++-v3/include/std/numeric | 6 +- libstdc++-v3/include/std/ranges | 18 +- .../21_strings/basic_string/cons/char/1.cc | 4 +- .../testsuite/25_algorithms/minmax/constrained.cc | 42 +++ .../25_algorithms/minmax_element/constrained.cc | 27 ++ libstdc++-v3/testsuite/26_numerics/reduce/95833.cc | 16 + 53 files changed, 1414 insertions(+), 603 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/analyzer/symbolic-7.c create mode 100644 gcc/testsuite/gcc.target/arm/acle/pr100856.c create mode 100644 gcc/testsuite/gfortran.dg/min0_max0_1.f90 create mode 100644 gcc/testsuite/gfortran.dg/min0_max0_2.f90 create mode 100644 libstdc++-v3/testsuite/26_numerics/reduce/95833.cc