This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/master-aarch64-bootstrap_lto in repository toolchain/ci/gcc.
from d881460deb1 Fortran - simplify length of substring with constant bounds adds b0963c4379b rs6000: Fix ICE expanding lxvp and stxvp gimple built-ins [ [...] adds 976401aa478 Fold more constants during veclower pass. adds b57fba5e376 Daily bump. adds d2883be3c8e Move xx* builtins to vsx.md. adds b777f228b48 gcov: fix output location for JSON mode. adds f9400e4e470 openmp: Diagnose some superfluous commas in OpenMP parsing adds 0d973c0a0d9 openmp: Implement the error directive adds 77167196fe8 Fortran: Add OpenMP's error directive adds 37744f82608 Refactor BB splitting of DRs for SLP group analysis adds 12f22906d3c Fortran - use temporary char buffer for passing HOST_WIDE_I [...] adds 1b507b1e3c5 c-format.c/Fortran: Support %wd / host-wide integer in gfc_error adds 29b2fd371f1 libstdc++: Skip filesystem tests that depend on permissions [...] adds 5f80c6270de Further improvements to constant shifts for the H8
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 56 ++++++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 5 + gcc/c-family/c-format.c | 142 ++++++------- gcc/c-family/c-omp.c | 4 +- gcc/c-family/c-pragma.c | 1 + gcc/c-family/c-pragma.h | 1 + gcc/c/ChangeLog | 6 + gcc/c/c-parser.c | 179 ++++++++++++++++- gcc/config/h8300/h8300.c | 38 +++- gcc/config/rs6000/altivec.md | 197 ------------------ gcc/config/rs6000/rs6000-call.c | 6 + gcc/config/rs6000/vsx.md | 206 +++++++++++++++++++ gcc/cp/ChangeLog | 16 ++ gcc/cp/parser.c | 220 ++++++++++++++++++++- gcc/fortran/ChangeLog | 7 + gcc/fortran/dump-parse-tree.c | 27 ++- gcc/fortran/error.c | 106 +++++++++- gcc/fortran/f95-lang.c | 5 +- gcc/fortran/gfortran.h | 58 ++++-- gcc/fortran/match.h | 1 + gcc/fortran/openmp.c | 124 +++++++++++- gcc/fortran/parse.c | 10 +- gcc/fortran/resolve.c | 2 + gcc/fortran/simplify.c | 6 +- gcc/fortran/st.c | 1 + gcc/fortran/trans-openmp.c | 34 ++++ gcc/fortran/trans.c | 1 + gcc/fortran/types.def | 1 + gcc/gcov.c | 158 +++++++-------- gcc/jit/ChangeLog | 7 + gcc/objc/ChangeLog | 5 + gcc/omp-builtins.def | 4 + gcc/testsuite/ChangeLog | 59 ++++++ gcc/testsuite/c-c++-common/Wunused-var-16.c | 4 +- gcc/testsuite/c-c++-common/gomp/error-1.c | 45 +++++ gcc/testsuite/c-c++-common/gomp/error-2.c | 24 +++ gcc/testsuite/c-c++-common/gomp/error-3.c | 70 +++++++ gcc/testsuite/c-c++-common/gomp/requires-3.c | 1 + gcc/testsuite/c-c++-common/gomp/sink-5.c | 16 ++ gcc/testsuite/g++.dg/gomp/attrs-1.C | 4 +- gcc/testsuite/g++.dg/gomp/attrs-13.C | 34 ++++ gcc/testsuite/g++.dg/gomp/attrs-2.C | 4 +- gcc/testsuite/g++.dg/gomp/error-1.C | 42 ++++ gcc/testsuite/gcc.target/powerpc/pr101849.c | 22 +++ gcc/testsuite/gfortran.dg/gomp/error-1.f90 | 51 +++++ gcc/testsuite/gfortran.dg/gomp/error-2.f90 | 15 ++ gcc/testsuite/gfortran.dg/gomp/error-3.f90 | 88 +++++++++ gcc/tree-vect-data-refs.c | 21 +- gcc/tree-vect-generic.c | 7 +- gcc/tree-vect-slp.c | 2 + libgomp/error.c | 31 +++ libgomp/libgomp.map | 2 + libgomp/libgomp_g.h | 5 + libgomp/testsuite/libgomp.c-c++-common/error-1.c | 49 +++++ libgomp/testsuite/libgomp.fortran/error-1.f90 | 78 ++++++++ libstdc++-v3/ChangeLog | 42 ++++ .../filesystem/iterators/directory_iterator.cc | 36 ++-- .../iterators/recursive_directory_iterator.cc | 97 ++++----- .../27_io/filesystem/operations/exists.cc | 6 +- .../27_io/filesystem/operations/is_empty.cc | 6 +- .../27_io/filesystem/operations/remove.cc | 21 +- .../27_io/filesystem/operations/remove_all.cc | 7 +- .../27_io/filesystem/operations/status.cc | 6 +- .../27_io/filesystem/operations/symlink_status.cc | 3 + .../filesystem/operations/temp_directory_path.cc | 6 +- .../filesystem/iterators/directory_iterator.cc | 32 +-- .../iterators/recursive_directory_iterator.cc | 98 ++++----- .../experimental/filesystem/operations/exists.cc | 6 +- .../experimental/filesystem/operations/is_empty.cc | 6 +- .../experimental/filesystem/operations/remove.cc | 21 +- .../filesystem/operations/remove_all.cc | 7 +- .../filesystem/operations/temp_directory_path.cc | 3 + libstdc++-v3/testsuite/util/testsuite_fs.h | 18 +- 74 files changed, 2133 insertions(+), 598 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/error-1.c create mode 100644 gcc/testsuite/c-c++-common/gomp/error-2.c create mode 100644 gcc/testsuite/c-c++-common/gomp/error-3.c create mode 100644 gcc/testsuite/c-c++-common/gomp/sink-5.c create mode 100644 gcc/testsuite/g++.dg/gomp/attrs-13.C create mode 100644 gcc/testsuite/g++.dg/gomp/error-1.C create mode 100644 gcc/testsuite/gcc.target/powerpc/pr101849.c create mode 100644 gcc/testsuite/gfortran.dg/gomp/error-1.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/error-2.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/error-3.f90 create mode 100644 libgomp/testsuite/libgomp.c-c++-common/error-1.c create mode 100644 libgomp/testsuite/libgomp.fortran/error-1.f90