This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_cross_build/master-arm in repository toolchain/ci/gcc.
from dc002e31fb2 Fix gfortran.dg/inline_matmul_17.f90 template. adds ef0e100f587 libstdc++: Remove public std::vector<bool>::data() member adds 083fd73202f libstdc++: Make pmr::memory_resource::allocate implicitly c [...] adds 7846156274d compiler: traverse func subexprs when creating func descriptors adds 8a8458ac6bb rs6000: Fix test_mffsl.c to require Power9 support adds a7753db4a7c Remove loop crossing restriction from the backward threader. adds 53b3edceab9 Make ranger optional in path_range_query. adds 4a407d358e2 libstdc++: Fix debug containers for C++98 mode adds b39265d4fe1 Daily bump. new 1ae8edf5f73 libstdc++: Implement constexpr std::vector for C++20
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: gcc/ChangeLog | 558 +++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 4 + gcc/c/ChangeLog | 13 + gcc/cp/ChangeLog | 19 + gcc/fortran/ChangeLog | 17 + gcc/gimple-range-path.cc | 43 +- gcc/gimple-range-path.h | 9 +- gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/expressions.cc | 57 ++- gcc/go/gofrontend/expressions.h | 8 + gcc/go/gofrontend/gogo.cc | 5 + gcc/testsuite/ChangeLog | 67 +++ gcc/testsuite/gcc.target/powerpc/test_mffsl.c | 3 +- gcc/tree-ssa-loop-ch.c | 4 +- gcc/tree-ssa-threadbackward.c | 41 +- libgcc/ChangeLog | 7 + libgomp/ChangeLog | 22 + libstdc++-v3/ChangeLog | 28 ++ libstdc++-v3/include/bits/alloc_traits.h | 2 + libstdc++-v3/include/bits/allocator.h | 1 + libstdc++-v3/include/bits/stl_algobase.h | 1 + libstdc++-v3/include/bits/stl_bvector.h | 273 +++++++--- libstdc++-v3/include/bits/stl_uninitialized.h | 158 ++++-- libstdc++-v3/include/bits/stl_vector.h | 209 ++++++-- libstdc++-v3/include/bits/vector.tcc | 28 +- libstdc++-v3/include/debug/deque | 10 +- libstdc++-v3/include/debug/list | 10 +- libstdc++-v3/include/debug/map.h | 10 +- libstdc++-v3/include/debug/multimap.h | 10 +- libstdc++-v3/include/debug/multiset.h | 10 +- libstdc++-v3/include/debug/set.h | 10 +- libstdc++-v3/include/debug/string | 10 +- libstdc++-v3/include/debug/vector | 23 +- libstdc++-v3/include/std/memory_resource | 3 +- libstdc++-v3/include/std/vector | 2 + .../23_containers/headers/vector/synopsis.cc | 14 + .../23_containers/vector/bool/capacity/29134.cc | 5 - .../vector/bool/capacity/constexpr.cc | 115 +++++ .../23_containers/vector/bool/cmp_c++20.cc | 19 +- .../23_containers/vector/bool/cons/constexpr.cc | 280 +++++++++++ .../vector/bool/element_access/constexpr.cc | 102 ++++ .../vector/bool/modifiers/assign/constexpr.cc | 216 ++++++++ .../vector/bool/modifiers/constexpr.cc | 248 +++++++++ .../vector/bool/modifiers/insert/31370.cc | 6 +- .../vector/bool/modifiers/swap/constexpr.cc | 66 +++ .../23_containers/vector/capacity/constexpr.cc | 101 ++++ .../testsuite/23_containers/vector/cmp_c++20.cc | 49 +- .../testsuite/23_containers/vector/cons/89164.cc | 16 +- .../vector/cons/{89164.cc => 89164_c++17.cc} | 21 +- .../23_containers/vector/cons/constexpr.cc | 279 +++++++++++ .../23_containers/vector/data_access/constexpr.cc | 26 + .../vector/element_access/constexpr.cc | 91 ++++ .../vector/modifiers/assign/constexpr.cc | 207 ++++++++ .../23_containers/vector/modifiers/constexpr.cc | 226 +++++++++ .../vector/modifiers/swap/constexpr.cc | 51 ++ 56 files changed, 3443 insertions(+), 374 deletions(-) create mode 100644 libstdc++-v3/testsuite/23_containers/vector/bool/capacity/constexpr.cc create mode 100644 libstdc++-v3/testsuite/23_containers/vector/bool/cons/constexpr.cc create mode 100644 libstdc++-v3/testsuite/23_containers/vector/bool/element_access [...] create mode 100644 libstdc++-v3/testsuite/23_containers/vector/bool/modifiers/assi [...] create mode 100644 libstdc++-v3/testsuite/23_containers/vector/bool/modifiers/cons [...] create mode 100644 libstdc++-v3/testsuite/23_containers/vector/bool/modifiers/swap [...] create mode 100644 libstdc++-v3/testsuite/23_containers/vector/capacity/constexpr.cc copy libstdc++-v3/testsuite/23_containers/vector/cons/{89164.cc => 89164_c++17.cc} (70%) create mode 100644 libstdc++-v3/testsuite/23_containers/vector/cons/constexpr.cc create mode 100644 libstdc++-v3/testsuite/23_containers/vector/data_access/constexpr.cc create mode 100644 libstdc++-v3/testsuite/23_containers/vector/element_access/cons [...] create mode 100644 libstdc++-v3/testsuite/23_containers/vector/modifiers/assign/co [...] create mode 100644 libstdc++-v3/testsuite/23_containers/vector/modifiers/constexpr.cc create mode 100644 libstdc++-v3/testsuite/23_containers/vector/modifiers/swap/cons [...]