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 in repository toolchain/ci/gcc.
from 9107b139f44 c++: alias CTAD in unevaluated context [PR101233] adds 955ceda03da Daily bump. adds e9844603541 Daily bump. new 2b99794806d stor-layout: Avoid DECL_BIT_FIELD_REPRESENTATIVE with NULL [...] new 6c9eaa1de2c c: Fix C cast error-recovery [PR101171] new 72ff4a04bb3 c: Fix up c_parser_has_attribute_expression [PR101176] new 86a9718e162 match.pd: Avoid (intptr_t)x eq/ne CST to x eq/ne (typeof x) [...] new 135680bdce4 dwarf2out: Handle COMPOUND_LITERAL_EXPR in loc_list_from_tr [...] new 122cdd5b215 libgomp: Don't include limits.h instead of hidden visibility block new 31b76a815fc godump: Fix -fdump-go-spec= reproduceability issue [PR101407] new 2f49122aec7 c++: Optimize away NULLPTR_TYPE comparisons [PR101443] new d2904de2cfa OpenMP: Support complex/float in && and || reduction new 9119f51f402 openmp - Fix up && and || reductions [PR94366] new de8945a3665 g++.dg/gomp/clause-3.C: Fix - missing in r12-438-g1580fc7 [ [...]
The 11 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/DATESTAMP | 2 +- gcc/c/c-parser.c | 3 + gcc/c/c-typeck.c | 11 +- gcc/cp/ChangeLog | 22 +++ gcc/cp/cp-gimplify.c | 26 +++ gcc/cp/semantics.c | 8 +- gcc/dwarf2out.c | 4 + gcc/godump.c | 4 +- gcc/match.pd | 7 +- gcc/omp-low.c | 80 ++++++++- gcc/stor-layout.c | 5 +- gcc/testsuite/ChangeLog | 16 ++ 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 + 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 ++ 27 files changed, 1035 insertions(+), 29 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 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