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_debug in repository toolchain/ci/gcc.
from 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 [ [...] new 87aa5a09eb0 Daily bump.
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 | 56 ++++++ gcc/DATESTAMP | 2 +- gcc/c/ChangeLog | 26 +++ gcc/c/c-parser.c | 3 + gcc/c/c-typeck.c | 11 +- gcc/cp/ChangeLog | 17 ++ 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 | 55 ++++++ 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/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 +++++++++++++++++++++ 29 files changed, 1164 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