This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_native_check_binutils/master-arm in repository toolchain/ci/gcc.
from e660441f94f [OpenMP] Update omp-low.c's omp_runtime_api_call [PR101931] adds be024a12858 Fix regression in debug info for Ada with DWARF 5 adds 8cdcea51c0f gcov: Add TARGET_GCOV_TYPE_SIZE target hook adds db853ff78a3 libstdc++: Install GDB pretty printers for debug library adds 6c25932ac39 libstdc++: Use qualified-id for class member constant [PR101937] adds 58608f64a76 Update cpplib de.po adds 052bdc7f2ba Drop embeded stabs from rl78 port adds 9d1d9fc8b4a Daily bump. adds d56607c16de Adjust testcase. adds 75a7176575c Improve SImode shifts for H8 adds 0215b3559e5 tree-optimization/101925 - fix VN with reverse storage order adds d5659997921 c++: Add C++20 #__VA_OPT__ support adds e45483c7c4b openmp: Implement OpenMP 5.1 scope construct adds 2e0d7f16da0 vect: Add extraction cost for slp reduc adds 3ed77968963 tree-optimization/101868 - avoid PRE of trapping mems across calls adds 891bdbf2b04 Special case -TYPE_MIN_VALUE for flag_wrapv in operator_abs [...] adds 568b9c0e8ee aarch64: Replace some uses of GET_CODE with RTL predicate macros
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 117 +++++++++++++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 5 + gcc/c-family/c-cppbuiltin.c | 2 + gcc/c-family/c-omp.c | 4 +- gcc/c-family/c-pragma.c | 1 + gcc/c-family/c-pragma.h | 1 + gcc/c/c-parser.c | 30 ++++ gcc/config.gcc | 2 +- gcc/config/aarch64/aarch64.c | 28 ++-- gcc/config/h8300/h8300.c | 69 ++++++-- gcc/config/sparc/rtemself.h | 2 + gcc/config/sparc/sparc.c | 11 ++ gcc/coverage.c | 2 +- gcc/cp/parser.c | 28 ++++ gcc/cp/pt.c | 1 + gcc/doc/tm.texi | 11 ++ gcc/doc/tm.texi.in | 2 + gcc/dwarf2out.c | 1 + gcc/fortran/ChangeLog | 40 +++++ gcc/gimple-low.c | 1 + gcc/gimple-pretty-print.c | 33 ++++ gcc/gimple-walk.c | 1 + gcc/gimple.c | 23 +++ gcc/gimple.def | 5 + gcc/gimple.h | 41 ++++- gcc/gimplify.c | 24 ++- gcc/omp-builtins.def | 2 + gcc/omp-expand.c | 7 +- gcc/omp-low.c | 181 +++++++++++++++++++-- gcc/range-op.cc | 6 + gcc/rtl.h | 3 + gcc/target.def | 12 ++ gcc/targhooks.c | 7 + gcc/targhooks.h | 2 + gcc/testsuite/ChangeLog | 25 +++ gcc/testsuite/c-c++-common/cpp/va-opt-5.c | 67 ++++++++ gcc/testsuite/c-c++-common/cpp/va-opt-6.c | 17 ++ gcc/testsuite/c-c++-common/gomp/cancel-1.c | 22 +++ gcc/testsuite/c-c++-common/gomp/clause-dups-1.c | 2 + gcc/testsuite/c-c++-common/gomp/loop-1.c | 18 ++ gcc/testsuite/c-c++-common/gomp/nesting-2.c | 12 ++ gcc/testsuite/c-c++-common/gomp/reduction-task-2.c | 8 +- gcc/testsuite/c-c++-common/gomp/scan-1.c | 2 + gcc/testsuite/c-c++-common/gomp/scope-1.c | 39 +++++ gcc/testsuite/c-c++-common/gomp/scope-2.c | 41 +++++ gcc/testsuite/g++.dg/gomp/attrs-1.C | 4 + gcc/testsuite/g++.dg/gomp/attrs-2.C | 4 + gcc/testsuite/gcc.dg/gomp/nesting-1.c | 60 +++++++ gcc/testsuite/gcc.dg/lto/pr101868_0.c | 33 ++++ gcc/testsuite/gcc.dg/lto/pr101868_1.c | 23 +++ gcc/testsuite/gcc.dg/lto/pr101868_2.c | 11 ++ gcc/testsuite/gcc.dg/lto/pr101868_3.c | 8 + gcc/testsuite/gcc.dg/pr101938.c | 28 ++++ gcc/testsuite/gcc.dg/sso-16.c | 100 ++++++++++++ gcc/testsuite/gcc.target/i386/pr82460-2.c | 2 +- gcc/testsuite/gfortran.dg/gomp/reduction4.f90 | 2 +- gcc/testsuite/gfortran.dg/gomp/reduction7.f90 | 2 +- gcc/tree-inline.c | 7 + gcc/tree-nested.c | 17 ++ gcc/tree-pretty-print.c | 5 + gcc/tree-profile.c | 4 +- gcc/tree-ssa-sccvn.c | 33 +++- gcc/tree-vect-slp.c | 4 +- gcc/tree.def | 5 + gcc/tree.h | 3 + libcpp/macro.c | 88 ++++++++-- libcpp/po/ChangeLog | 4 + libcpp/po/de.po | 51 ++---- libgcc/ChangeLog | 5 + libgcc/libgcov.h | 6 +- libgomp/ChangeLog | 9 + libgomp/Makefile.am | 11 +- libgomp/Makefile.in | 23 +-- libgomp/libgomp.map | 5 + libgomp/libgomp_g.h | 4 + libgomp/scope.c | 62 +++++++ libgomp/testsuite/libgomp.c-c++-common/scope-1.c | 50 ++++++ .../libgomp.c-c++-common/task-reduction-16.c | 76 +++++++++ libstdc++-v3/ChangeLog | 13 ++ libstdc++-v3/python/Makefile.am | 12 +- libstdc++-v3/python/Makefile.in | 8 +- libstdc++-v3/src/c++11/debug.cc | 8 +- 83 files changed, 1611 insertions(+), 139 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/cpp/va-opt-5.c create mode 100644 gcc/testsuite/c-c++-common/cpp/va-opt-6.c create mode 100644 gcc/testsuite/c-c++-common/gomp/scope-1.c create mode 100644 gcc/testsuite/c-c++-common/gomp/scope-2.c create mode 100644 gcc/testsuite/gcc.dg/lto/pr101868_0.c create mode 100644 gcc/testsuite/gcc.dg/lto/pr101868_1.c create mode 100644 gcc/testsuite/gcc.dg/lto/pr101868_2.c create mode 100644 gcc/testsuite/gcc.dg/lto/pr101868_3.c create mode 100644 gcc/testsuite/gcc.dg/pr101938.c create mode 100644 gcc/testsuite/gcc.dg/sso-16.c create mode 100644 libgomp/scope.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/scope-1.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/task-reduction-16.c