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-aarch64-bootstrap_O3 in repository toolchain/ci/gcc.
from 05677e66bd4 Fix ODR violations in code using <ext/atomicity.h> adds d7e131429b2 * tree-ssa-loop-manip.c (create_iv): Add missing guard for [...] adds eedad335d48 /cp 2019-07-05 Paolo Carlini paolo.carlini@oracle.com adds e29075254e3 [Darwin.PPC] Remove dead code. adds fdf24c7175b PR c++/67184 PR c++/69445 * call.c (build_new_method_cal [...] adds 75e725e90de Daily bump. adds 28a60351fc8 * omp-low.c (omp_find_scan): Make static. (lower_omp_for_ [...] adds d444fb24c62 PR tree-optimization/91096 * gcc.dg/vect/vect-simd-10.c ( [...] adds 3d2b49b2892 * omp-low.c (struct omp_context): Add for_simd_scan_phase [...] adds e5d63a222b0 [arm] Fix ambiguous .md attribute uses adds b8883de8d76 [amdgcn] Fix ambiguous .md attribute uses adds 584ef46adf3 [h8300] Fix ambiguous .md attribute uses adds e0cea48ade4 [i386] Fix ambiguous .md attribute uses adds a559dc97b79 [s390] Fix ambiguous .md attribute uses adds 402bea3aff8 Fix recent regression in __atomic_add_dispatch adds a0110ad7085 * omp-low.c (struct omp_context): Rename combined_into_sim [...] adds 8d54bfe2765 * omp-low.c (lower_rec_input_clauses): For lastprivate cla [...] adds 8d9af6a1f86 Daily bump. adds d57faea9337 Fix uninitialised use in mips_split_move adds da056355584 PR91068: Fix MIPS fallout from IRA matched operand changes adds be717dc1f16 2019-07-07 Paul Thomas pault@gcc.gnu.org adds fa3fa65e18f [Darwin] Don't jam symbol stubs on for kernel code. adds f716e30e1cc [Darwin] Make a final check on PIC options. adds 83eb752c6c4 rs6000: Delete Ffre adds f60e7cee570 PR tree-optimization/91090 * tree-ssa-dom.c [...]
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 135 ++++++- gcc/DATESTAMP | 2 +- gcc/config/arm/sync.md | 6 +- gcc/config/darwin.c | 10 +- gcc/config/gcn/gcn-valu.md | 32 +- gcc/config/h8300/h8300.md | 2 +- gcc/config/i386/i386.md | 4 +- gcc/config/i386/sse.md | 42 +-- gcc/config/mips/mips.c | 4 +- gcc/config/mips/mips.md | 12 +- gcc/config/rs6000/rs6000-logue.c | 23 +- gcc/config/rs6000/rs6000.md | 1 - gcc/config/s390/s390.md | 4 +- gcc/config/s390/vx-builtins.md | 2 +- gcc/cp/ChangeLog | 18 +- gcc/cp/call.c | 27 +- gcc/fortran/ChangeLog | 11 +- gcc/fortran/trans-array.c | 17 +- gcc/omp-low.c | 393 +++++++++++++++++---- gcc/testsuite/ChangeLog | 24 +- gcc/testsuite/c-c++-common/gomp/scan-4.c | 2 +- gcc/testsuite/g++.dg/other/final4.C | 16 + gcc/testsuite/gcc.dg/vect/vect-simd-10.c | 10 +- gcc/testsuite/gcc.dg/vect/vect-simd-14.c | 10 +- gcc/testsuite/gfortran.dg/pointer_array_11.f90 | 90 +++++ gcc/tree-ssa-dom.c | 11 +- gcc/tree-ssa-loop-manip.c | 3 +- libgomp/ChangeLog | 22 ++ libgomp/testsuite/libgomp.c++/scan-10.C | 119 +++++++ libgomp/testsuite/libgomp.c++/scan-11.C | 122 +++++++ libgomp/testsuite/libgomp.c++/scan-12.C | 153 ++++++++ libgomp/testsuite/libgomp.c++/scan-13.C | 161 +++++++++ libgomp/testsuite/libgomp.c++/scan-14.C | 123 +++++++ libgomp/testsuite/libgomp.c++/scan-15.C | 121 +++++++ libgomp/testsuite/libgomp.c++/scan-16.C | 153 ++++++++ libgomp/testsuite/libgomp.c++/scan-9.C | 154 ++++++++ libgomp/testsuite/libgomp.c/scan-11.c | 118 +++++++ libgomp/testsuite/libgomp.c/scan-12.c | 120 +++++++ .../testsuite/libgomp.c/scan-13.c | 17 +- libgomp/testsuite/libgomp.c/scan-14.c | 182 ++++++++++ libgomp/testsuite/libgomp.c/scan-15.c | 118 +++++++ libgomp/testsuite/libgomp.c/scan-16.c | 120 +++++++ .../testsuite/libgomp.c/scan-17.c | 17 +- libgomp/testsuite/libgomp.c/scan-18.c | 182 ++++++++++ libgomp/testsuite/libgomp.c/scan-19.c | 119 +++++++ libgomp/testsuite/libgomp.c/scan-20.c | 119 +++++++ libstdc++-v3/ChangeLog | 6 + libstdc++-v3/include/ext/atomicity.h | 9 +- 48 files changed, 2952 insertions(+), 214 deletions(-) create mode 100644 gcc/testsuite/g++.dg/other/final4.C create mode 100644 gcc/testsuite/gfortran.dg/pointer_array_11.f90 create mode 100644 libgomp/testsuite/libgomp.c++/scan-10.C create mode 100644 libgomp/testsuite/libgomp.c++/scan-11.C create mode 100644 libgomp/testsuite/libgomp.c++/scan-12.C create mode 100644 libgomp/testsuite/libgomp.c++/scan-13.C create mode 100644 libgomp/testsuite/libgomp.c++/scan-14.C create mode 100644 libgomp/testsuite/libgomp.c++/scan-15.C create mode 100644 libgomp/testsuite/libgomp.c++/scan-16.C create mode 100644 libgomp/testsuite/libgomp.c++/scan-9.C create mode 100644 libgomp/testsuite/libgomp.c/scan-11.c create mode 100644 libgomp/testsuite/libgomp.c/scan-12.c copy gcc/testsuite/gcc.dg/vect/vect-simd-10.c => libgomp/testsuite/libgomp.c/scan- [...] create mode 100644 libgomp/testsuite/libgomp.c/scan-14.c create mode 100644 libgomp/testsuite/libgomp.c/scan-15.c create mode 100644 libgomp/testsuite/libgomp.c/scan-16.c copy gcc/testsuite/gcc.dg/vect/vect-simd-14.c => libgomp/testsuite/libgomp.c/scan- [...] create mode 100644 libgomp/testsuite/libgomp.c/scan-18.c create mode 100644 libgomp/testsuite/libgomp.c/scan-19.c create mode 100644 libgomp/testsuite/libgomp.c/scan-20.c