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/master-arm in repository toolchain/ci/gcc.
from 602fca427df Turn 'bool force_collect' parameter to 'ggc_collect' into a [...] adds e4f16e9f357 Add more self-tests for 'hash_map' with Value type with non [...] adds e12946df34c Add EAF_NOREAD check to tree-ssa-uninit adds 88ef1a14bb4 Fix thinko in latest change for GNAT encodings adds a6b3db3e862 c++: ignore explicit dguides during NTTP CTAD [PR101883] adds be4a4fb5166 c++: aggregate CTAD and brace elision [PR101344] adds f74433e70ae Fortran: Add OpenMP's nothing directive support adds c883d1dcdea libstdc++: Fix vector<bool> printer tests to work in debug mode adds 085c2f8f0e1 libstdc++: Fix CTAD for debug sequence containers adds de44eee5d52 libstdc++: Minor optimization for min/max/minmax adds 37620d57511 libstdc++: Simplify n-ary arithmetic promotion traits adds aba938d6c35 libstdc++: Enable doxygen processing for C++20 components adds 828176ba490 libstdc++: Improve doxygen comments in <bits/stl_function.h> adds 4fb471afc4f libstdc++: Improve doxygen documentation for std::unique_ptr adds 640df4ef815 aarch64: Fix float <-> int errors in vld4[q]_lane intrinsics adds bb04a03c6f9 Make 'gcc/hash-map-tests.c:test_map_of_type_with_ctor_and_d [...] adds aef703cf982 analyzer: detect and analyze calls via function pointer
No new revisions were added by this update.
Summary of changes: gcc/ada/gcc-interface/decl.c | 6 +- gcc/analyzer/analysis-plan.cc | 4 + gcc/analyzer/checker-path.cc | 28 ++-- gcc/analyzer/checker-path.h | 6 + gcc/analyzer/diagnostic-manager.cc | 23 +-- gcc/analyzer/engine.cc | 183 +++++++++++++++++++++ gcc/analyzer/exploded-graph.h | 39 +++++ gcc/analyzer/program-point.cc | 18 ++ gcc/analyzer/program-point.h | 3 +- gcc/analyzer/program-state.cc | 44 +++++ gcc/analyzer/program-state.h | 11 ++ gcc/analyzer/region-model.cc | 44 +++-- gcc/analyzer/region-model.h | 6 + gcc/analyzer/state-purge.cc | 35 ++-- gcc/analyzer/supergraph.cc | 43 ++++- gcc/analyzer/supergraph.h | 7 +- gcc/config/aarch64/arm_neon.h | 8 +- gcc/cp/cp-tree.h | 6 + gcc/cp/decl.c | 18 +- gcc/cp/pt.c | 10 +- gcc/fortran/match.h | 1 + gcc/fortran/openmp.c | 11 ++ gcc/fortran/parse.c | 3 + gcc/hash-map-tests.c | 163 ++++++++++++++++++ .../g++.dg/cpp2a/class-deduction-aggr11.C | 29 ++++ .../g++.dg/cpp2a/class-deduction-aggr12.C | 15 ++ gcc/testsuite/g++.dg/cpp2a/nontype-class49.C | 8 + gcc/testsuite/gcc.dg/analyzer/function-ptr-4.c | 24 +++ gcc/testsuite/gcc.dg/analyzer/pr100546.c | 17 ++ gcc/testsuite/gfortran.dg/nothing-1.f90 | 28 ++++ gcc/testsuite/gfortran.dg/nothing-2.f90 | 7 + gcc/tree-ssa-uninit.c | 2 +- libstdc++-v3/doc/doxygen/user.cfg.in | 20 ++- libstdc++-v3/include/bits/stl_algo.h | 86 ++++++---- libstdc++-v3/include/bits/stl_function.h | 134 ++++++++------- libstdc++-v3/include/bits/unique_ptr.h | 84 +++++++--- libstdc++-v3/include/debug/deque | 7 +- libstdc++-v3/include/debug/forward_list | 7 +- libstdc++-v3/include/debug/list | 7 +- libstdc++-v3/include/debug/vector | 7 +- libstdc++-v3/include/ext/type_traits.h | 16 +- libstdc++-v3/include/std/complex | 29 ---- libstdc++-v3/include/std/type_traits | 55 +++++-- libstdc++-v3/python/libstdcxx/v6/printers.py | 10 +- .../testsuite/libstdc++-prettyprinters/simple.cc | 14 +- .../testsuite/libstdc++-prettyprinters/simple11.cc | 14 +- 46 files changed, 1089 insertions(+), 251 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp2a/class-deduction-aggr11.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/class-deduction-aggr12.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/nontype-class49.C create mode 100644 gcc/testsuite/gcc.dg/analyzer/function-ptr-4.c create mode 100644 gcc/testsuite/gcc.dg/analyzer/pr100546.c create mode 100644 gcc/testsuite/gfortran.dg/nothing-1.f90 create mode 100644 gcc/testsuite/gfortran.dg/nothing-2.f90