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/release-aarch64 in repository toolchain/ci/gcc.
from 419201f566b libstdc++: Use function object for __decay_copy helper adds 2e63d08cb9b c++: fn parm pack expansion inside constraint [PR100138] adds 9107b139f44 c++: alias CTAD in unevaluated context [PR101233] adds 955ceda03da Daily bump. adds e9844603541 Daily bump. adds 2b99794806d stor-layout: Avoid DECL_BIT_FIELD_REPRESENTATIVE with NULL [...] adds 6c9eaa1de2c c: Fix C cast error-recovery [PR101171] adds 72ff4a04bb3 c: Fix up c_parser_has_attribute_expression [PR101176] adds 86a9718e162 match.pd: Avoid (intptr_t)x eq/ne CST to x eq/ne (typeof x) [...] adds 135680bdce4 dwarf2out: Handle COMPOUND_LITERAL_EXPR in loc_list_from_tr [...] adds 122cdd5b215 libgomp: Don't include limits.h instead of hidden visibility block adds 31b76a815fc godump: Fix -fdump-go-spec= reproduceability issue [PR101407] adds 2f49122aec7 c++: Optimize away NULLPTR_TYPE comparisons [PR101443] adds d2904de2cfa OpenMP: Support complex/float in && and || reduction adds 9119f51f402 openmp - Fix up && and || reductions [PR94366] adds de8945a3665 g++.dg/gomp/clause-3.C: Fix - missing in r12-438-g1580fc7 [ [...] adds 87aa5a09eb0 Daily bump. adds 6dc150d9a03 libstdc++: Fix std::get<T> for std::tuple [PR101427] adds 0e4fc87837b libstdc++: Remove precondition checks from ranges::subrange adds 8000947e544 libstdc++: Fix some problems in PSTL tests adds ac0efe3c6fc rs6000: Don't let swaps pass break multiply low-part (PR101129) adds d34f3a9312e compiler: avoid aliases in receiver types
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 56 ++++++ gcc/DATESTAMP | 2 +- gcc/c/ChangeLog | 26 +++ gcc/c/c-parser.c | 3 + gcc/c/c-typeck.c | 11 +- gcc/config/rs6000/rs6000-p8swap.c | 19 ++ gcc/cp/ChangeLog | 39 +++++ gcc/cp/constraint.cc | 6 +- gcc/cp/cp-gimplify.c | 26 +++ gcc/cp/pt.c | 10 +- gcc/cp/semantics.c | 8 +- gcc/dwarf2out.c | 4 + gcc/go/gofrontend/gogo.cc | 40 +++++ gcc/go/gofrontend/gogo.h | 8 + gcc/go/gofrontend/types.cc | 51 ++++++ gcc/godump.c | 4 +- gcc/match.pd | 7 +- gcc/omp-low.c | 80 ++++++++- gcc/stor-layout.c | 5 +- gcc/testsuite/ChangeLog | 71 ++++++++ gcc/testsuite/g++.dg/cpp0x/nullptr46.C | 11 ++ .../g++.dg/cpp2a/class-deduction-alias10.C | 10 ++ gcc/testsuite/g++.dg/cpp2a/concepts-ctad4.C | 25 +++ gcc/testsuite/g++.dg/gomp/clause-3.C | 2 +- gcc/testsuite/g++.dg/ubsan/pr101210.C | 13 ++ gcc/testsuite/gcc.dg/gomp/clause-1.c | 2 +- gcc/testsuite/gcc.dg/pr101171.c | 13 ++ gcc/testsuite/gcc.dg/pr101172.c | 20 +++ gcc/testsuite/gcc.dg/pr101266.c | 8 + gcc/testsuite/gcc.target/powerpc/pr101129.c | 35 ++++ libgomp/ChangeLog | 28 +++ libgomp/config/linux/affinity.c | 1 + libgomp/config/linux/sem.h | 4 +- libgomp/testsuite/libgomp.c-c++-common/pr94366.c | 17 ++ .../testsuite/libgomp.c-c++-common/reduction-1.c | 192 ++++++++++++++++++++ .../testsuite/libgomp.c-c++-common/reduction-2.c | 192 ++++++++++++++++++++ .../testsuite/libgomp.c-c++-common/reduction-3.c | 192 ++++++++++++++++++++ .../testsuite/libgomp.c-c++-common/reduction-4.c | 194 +++++++++++++++++++++ libstdc++-v3/ChangeLog | 15 ++ libstdc++-v3/include/bits/ranges_util.h | 22 +-- libstdc++-v3/include/std/tuple | 69 ++++++-- .../20_util/tuple/element_access/101427.cc | 23 +++ .../20_util/tuple/element_access/get_neg.cc | 3 +- .../pstl/alg_nonmodifying/find_end.cc | 8 +- .../pstl/alg_nonmodifying/search_n.cc | 2 +- .../testsuite/std/ranges/subrange/constexpr.cc | 26 +++ libstdc++-v3/testsuite/util/pstl/test_utils.h | 10 +- 47 files changed, 1544 insertions(+), 69 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/nullptr46.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/class-deduction-alias10.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-ctad4.C create mode 100644 gcc/testsuite/g++.dg/ubsan/pr101210.C create mode 100644 gcc/testsuite/gcc.dg/pr101171.c create mode 100644 gcc/testsuite/gcc.dg/pr101172.c create mode 100644 gcc/testsuite/gcc.dg/pr101266.c create mode 100644 gcc/testsuite/gcc.target/powerpc/pr101129.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/pr94366.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/reduction-1.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/reduction-2.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/reduction-3.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/reduction-4.c create mode 100644 libstdc++-v3/testsuite/20_util/tuple/element_access/101427.cc create mode 100644 libstdc++-v3/testsuite/std/ranges/subrange/constexpr.cc