This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-arm-stable-defconfig in repository toolchain/ci/gcc.
from 77ddff12187 2019-01-12 Paul Thomas pault@gcc.gnu.org adds 6fd31ec4ff7 * tree-ssa-loop-ivopts.c (find_inv_vars): Fix a comment typo. adds 75a6f948423 * params.def (inline-unit-growth): Set to 40. adds d42f854f0d5 2019-01-12 Paul Thomas pault@gcc.gnu.org adds 49fc210b429 Document merge process for dmd, druntime and phobos. adds 53d5a1c006f * config/i386/gnu.h (TARGET_THREAD_SSP_OFFSET): Define. ( [...] adds 2fa582a9733 /cp 2019-01-12 Paolo Carlini paolo.carlini@oracle.com adds 5b6446c3562 /cp 2019-01-12 Paolo Carlini paolo.carlini@oracle.com adds 5a9f13c0c01 [nvptx] Enable large vectors adds 1dab5a543ae [nvptx] Update insufficient launch message for variable vec [...] adds 96824c69e17 [nvptx] Enable large vectors -- test-cases adds 139a2337ff5 [nvptx] Enable large vectors -- reduction testcases adds 2e6bfc51271 [nvptx] Don't emit barriers for empty loops -- test-cases adds a952bba3365 [nvptx] Force vl32 if calling vector-partitionable routines [...] adds 91074306817 [nvptx] Add vector_length 64 test-cases adds 8a182211b15 [nvptx] Enable setting vector length using -fopenacc-dim adds 09029e29470 [nvptx] Enable setting vector length using -fopenacc-dim -- [...] adds 4b03b84af23 2019-01-12 Jerry DeLisle jvdelisle@gcc.gnu.org adds 5966fd56f8d Daily bump. adds c8f3fe68848 2019-01-12 Steven G. Kargl kargl@gcc.gnu.org adds ae57d8c7da0 2019-01-13 Thomas Koenig tkoenig@gcc.gnu.org adds bd5cf857a29 C-family: Replace "may may" with "may" in warning message adds 70409deec85 2019-01-13 Thomas Koenig tkoenig@gcc.gnu.org
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 24 +++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 5 + gcc/c-family/c-warn.c | 2 +- gcc/c/ChangeLog | 4 + gcc/c/c-typeck.c | 2 +- gcc/config/i386/gnu.h | 15 +- gcc/config/nvptx/nvptx.c | 5 +- gcc/cp/ChangeLog | 5 + gcc/cp/decl.c | 5 +- gcc/cp/decl2.c | 10 +- gcc/d/ChangeLog | 4 + gcc/d/README.gcc | 11 ++ gcc/fortran/ChangeLog | 20 +++ gcc/fortran/resolve.c | 25 +-- gcc/fortran/trans-array.c | 23 ++- gcc/params.def | 2 +- gcc/testsuite/ChangeLog | 45 ++++- gcc/testsuite/g++.dg/cpp0x/pr62101.C | 2 +- gcc/testsuite/g++.dg/inherit/pure1.C | 11 +- gcc/testsuite/gcc.dg/pr51628-20.c | 2 +- gcc/testsuite/gcc.dg/pr51628-21.c | 2 +- gcc/testsuite/gcc.dg/pr51628-25.c | 2 +- gcc/testsuite/gfortran.dg/ISO_Fortran_binding_2.c | 115 ------------ .../gfortran.dg/ISO_Fortran_binding_2.f90 | 193 --------------------- .../gfortran.dg/alloc_comp_auto_array_3.f90 | 2 +- gcc/testsuite/gfortran.dg/internal_pack_17.f90 | 24 +++ gcc/testsuite/gfortran.dg/internal_pack_18.f90 | 15 ++ gcc/testsuite/gfortran.dg/pr61765.f90 | 15 ++ gcc/tree-ssa-loop-ivopts.c | 2 +- libgfortran/ChangeLog | 6 + libgfortran/io/list_read.c | 6 +- libgomp/ChangeLog | 53 ++++++ libgomp/plugin/plugin-nvptx.c | 20 ++- .../libgomp.oacc-c-c++-common/parallel-dims.c | 4 +- .../libgomp.oacc-c-c++-common/pr85381-5.c | 24 +++ .../testsuite/libgomp.oacc-c-c++-common/pr85381.c | 18 ++ .../libgomp.oacc-c-c++-common/pr85486-2.c | 52 ++++++ .../libgomp.oacc-c-c++-common/pr85486-3.c | 54 ++++++ .../testsuite/libgomp.oacc-c-c++-common/pr85486.c | 51 ++++++ .../vector-length-128-1.c | 5 +- .../vector-length-128-10.c | 39 +++++ ...vector-length-128-1.c => vector-length-128-2.c} | 8 +- ...vector-length-128-1.c => vector-length-128-4.c} | 13 +- ...vector-length-128-1.c => vector-length-128-5.c} | 14 +- ...vector-length-128-1.c => vector-length-128-6.c} | 12 +- ...vector-length-128-1.c => vector-length-128-7.c} | 11 +- .../libgomp.oacc-c-c++-common/vector-length-64-1.c | 17 ++ .../libgomp.oacc-c-c++-common/vector-length-64-2.c | 21 +++ .../libgomp.oacc-c-c++-common/vector-length-64-3.c | 17 ++ .../libgomp.oacc-c-c++-common/vred2d-128.c | 55 ++++++ libgomp/testsuite/libgomp.oacc-fortran/gemm-2.f90 | 80 +++++++++ libgomp/testsuite/libgomp.oacc-fortran/gemm.f90 | 79 +++++++++ libphobos/ChangeLog | 4 + libphobos/README.gcc | 26 +++ 55 files changed, 885 insertions(+), 398 deletions(-) create mode 100644 gcc/d/README.gcc delete mode 100644 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_2.c delete mode 100644 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_2.f90 create mode 100644 gcc/testsuite/gfortran.dg/internal_pack_17.f90 create mode 100644 gcc/testsuite/gfortran.dg/internal_pack_18.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr61765.f90 create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/pr85381-5.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/pr85381.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/pr85486-2.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/pr85486-3.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/pr85486.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/vector-length-128-10.c copy libgomp/testsuite/libgomp.oacc-c-c++-common/{vector-length-128-1.c => vector- [...] copy libgomp/testsuite/libgomp.oacc-c-c++-common/{vector-length-128-1.c => vector- [...] copy libgomp/testsuite/libgomp.oacc-c-c++-common/{vector-length-128-1.c => vector- [...] copy libgomp/testsuite/libgomp.oacc-c-c++-common/{vector-length-128-1.c => vector- [...] copy libgomp/testsuite/libgomp.oacc-c-c++-common/{vector-length-128-1.c => vector- [...] create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/vector-length-64-1.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/vector-length-64-2.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/vector-length-64-3.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/vred2d-128.c create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/gemm-2.f90 create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/gemm.f90 create mode 100644 libphobos/README.gcc