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-master-arm-bootstrap_profiled in repository toolchain/ci/gcc.
from 7ffba77d01a libstdc++: Adjust whitespace in <bits/cow_string.h> adds bee2f80b901 c++: Reject ordered comparison of null pointers [PR99701] adds 573e20aaca8 Abstract out (forward) jump threader state handling. adds 0853f392a21 Fix argument to pthread_join adds 7123ae2455b Implement OpenMP 5.1 section 3.15: omp_display_env adds a0f9a5dcc3b Use OEP_DECL_NAME when comparing VLA bounds [PR101585]. adds b7195fb01fe testsuite: Add missing C++ includes to tests [PR101646] adds 9360d6cd170 libstdc++: Simplify std::optional::value() adds 6aacd901b80 Let -Wuninitialized assume built-ins don't change const arg [...] adds 5b58057b6e7 rs6000: Write output to the builtins init file, part 3 of 3 adds bb4d8febb36 rs6000: Write static initializations for built-in table adds 7590016ba95 rs6000: Write static initializations for overload tables adds af3f12e6e86 Daily bump.
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 132 +++++++++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 5 + gcc/c-family/c-warn.c | 3 +- gcc/config/rs6000/rs6000-gen-builtins.c | 328 +++++++++++++++++++++ gcc/cp/ChangeLog | 9 + gcc/cp/cp-gimplify.c | 4 - gcc/cp/typeck.c | 15 +- gcc/testsuite/ChangeLog | 63 ++++ gcc/testsuite/g++.dg/coroutines/pr99047.C | 1 + gcc/testsuite/g++.dg/cpp0x/nullptr11.C | 16 - gcc/testsuite/g++.dg/cpp0x/nullptr46.C | 3 +- gcc/testsuite/g++.dg/cpp2a/spaceship-err7.C | 14 + gcc/testsuite/g++.dg/expr/ptr-comp4.C | 21 ++ gcc/testsuite/g++.dg/gcov/gcov-threads-1.C | 2 +- gcc/testsuite/g++.dg/pr71655.C | 1 + gcc/testsuite/gcc.dg/Wvla-parameter-13.c | 18 ++ gcc/testsuite/gcc.dg/uninit-38.c | 39 +-- gcc/testsuite/gcc.dg/uninit-41.c | 121 ++++++++ gcc/tree-ssa-dom.c | 21 +- gcc/tree-ssa-threadedge.c | 219 ++++++++------ gcc/tree-ssa-threadedge.h | 39 ++- gcc/tree-ssa-uninit.c | 67 +++++ gcc/tree-vrp.c | 16 +- libgomp/ChangeLog | 76 +++++ libgomp/env.c | 88 +++--- libgomp/fortran.c | 13 + libgomp/libgomp.map | 7 + libgomp/omp.h.in | 2 + libgomp/omp_lib.f90.in | 9 + libgomp/omp_lib.h.in | 2 + libstdc++-v3/ChangeLog | 103 +++++++ libstdc++-v3/include/experimental/optional | 56 ++-- libstdc++-v3/include/std/optional | 43 ++- .../tuple/comparison_operators/overloaded.cc | 1 - .../{overloaded.cc => overloaded2.cc} | 5 +- 36 files changed, 1272 insertions(+), 292 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp2a/spaceship-err7.C create mode 100644 gcc/testsuite/g++.dg/expr/ptr-comp4.C create mode 100644 gcc/testsuite/gcc.dg/Wvla-parameter-13.c create mode 100644 gcc/testsuite/gcc.dg/uninit-41.c copy libstdc++-v3/testsuite/20_util/tuple/comparison_operators/{overloaded.cc => o [...]