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-release-arm-bootstrap_profiled in repository toolchain/ci/gcc.
from 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. new 6dc150d9a03 libstdc++: Fix std::get<T> for std::tuple [PR101427] new 0e4fc87837b libstdc++: Remove precondition checks from ranges::subrange new 8000947e544 libstdc++: Fix some problems in PSTL tests new ac0efe3c6fc rs6000: Don't let swaps pass break multiply low-part (PR101129) new d34f3a9312e compiler: avoid aliases in receiver types new 24014b2b043 Daily bump. new f2060ae92f2 i386: Remove atomic_storedi_fpu and atomic_loaddi_fpu peeph [...]
The 7 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 | 63 +++++++ gcc/DATESTAMP | 2 +- gcc/c/ChangeLog | 26 +++ gcc/c/c-parser.c | 3 + gcc/c/c-typeck.c | 11 +- gcc/config/i386/sync.md | 152 ---------------- gcc/config/rs6000/rs6000-p8swap.c | 19 ++ gcc/cp/ChangeLog | 17 ++ gcc/cp/cp-gimplify.c | 26 +++ 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 | 60 +++++++ gcc/testsuite/g++.dg/cpp0x/nullptr46.C | 11 ++ 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/i386/pr71245-1.c | 22 --- gcc/testsuite/gcc.target/i386/pr71245-2.c | 22 --- 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 | 42 +++++ 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 +- 46 files changed, 1496 insertions(+), 263 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/nullptr46.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 delete mode 100644 gcc/testsuite/gcc.target/i386/pr71245-1.c delete mode 100644 gcc/testsuite/gcc.target/i386/pr71245-2.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