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_O3 in repository toolchain/ci/gcc.
from 7d9e95128f8 Rename signed integer 16/34-bit macros. adds 9396a1fe734 PR c++/92992 * call.c (convert_arg_to_ellipsis): For decl [...] adds 612d775a7aa PR c++/92666 * call.c (convert_arg_to_ellipsis): For floa [...] adds 7aca92d15df PR c++/92973 * method.c (early_check_defaulted_comparison [...] adds 7e787506657 PR c++/92966 * method.c (early_check_defaulted_comparison [...] adds 21aa9c8d87a PR c++/92965 * pt.c (invalid_nontype_parm_type_p): Call s [...] adds 4397240a804 PR c++/92974 - bogus location for enum and non-enum in ?: [...] adds 99bfd5213e5 PR c++/92745 - bogus error when initializing array of vectors. adds 13ab7abbf84 PR middle-end/91512 PR fortran/92738 * lang.opt (-finlin [...] adds 9308dce2ee8 Daily bump. adds f8e05f7440b Avoid segfault when doing IPA-VRP but not IPA-CP (PR 93015) adds 346f0fa9cd9 2019-12-21 Paul Thomas pault@gcc.gnu.org adds 74e58a91a3d 2019-12-21 Harald Anlauf anlauf@gmx.de adds e7e5766d0a1 2019-12-21 Harald Anlauf anlauf@gmx.de adds 0c1f5b1c22e [PR93026, PR92929] Adjust 'gfortran.dg/goacc/finalize-1.f' [...] adds dc669e8f45a [OMP] Restore 'omp declare target link' handling adds 5461780a638 libada: Fix shared library installation with `--disable-libada' adds 6c4fc4281d0 Daily bump. adds 51c8ea51910 testsuite: Fix run-time tracking down of `libgcc_s' adds e0902b02004 * doc/invoke.texi (-flto): Use "compile time" as a noun. adds e29d25c4c92 libgomp/test: Fix compilation for build sysroot adds 05a1be7d086 Restrict some aarch64 testcases to little-endian adds 5a5813e7852 Add OpenACC 2.6 `acc_get_property' support
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 9 ++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 4 + gcc/ada/gcc-interface/Makefile.in | 6 + gcc/cp/ChangeLog | 32 +++++ gcc/cp/call.c | 9 +- gcc/cp/decl.c | 15 ++- gcc/cp/method.c | 9 +- gcc/cp/pt.c | 10 +- gcc/cp/tree.c | 1 + gcc/doc/invoke.texi | 2 +- gcc/fortran/ChangeLog | 28 ++++- gcc/fortran/expr.c | 14 ++- gcc/fortran/lang.opt | 2 +- gcc/fortran/match.c | 17 +++ gcc/ipa-cp.c | 2 +- gcc/testsuite/ChangeLog | 77 ++++++++++-- gcc/testsuite/g++.dg/cpp0x/initlist118.C | 25 ++++ gcc/testsuite/g++.dg/cpp0x/nullptr45.C | 24 ++++ gcc/testsuite/g++.dg/cpp0x/spaceship-eq1.C | 5 + gcc/testsuite/g++.dg/cpp2a/nontype-class27.C | 15 +++ gcc/testsuite/g++.dg/cpp2a/spaceship-eq8.C | 8 ++ gcc/testsuite/g++.dg/diagnostic/enum1.C | 14 +++ gcc/testsuite/g++.dg/gomp/for-21.C | 4 +- gcc/testsuite/g++.dg/gomp/loop-2.C | 32 ++--- gcc/testsuite/g++.dg/warn/Wunused-var-36.C | 25 ++++ gcc/testsuite/gcc.dg/lto/pr93015_0.c | 6 + .../gcc.target/aarch64/sve/acle/general/dupq_1.c | 3 +- .../gcc.target/aarch64/torture/simd-abi-8.c | 3 +- gcc/testsuite/gfortran.dg/goacc/finalize-1.f | 4 +- gcc/testsuite/gfortran.dg/inquiry_type_ref_5.f90 | 29 +++++ gcc/testsuite/gfortran.dg/pr91661.f90 | 13 +++ gcc/testsuite/gfortran.dg/pr92990.f90 | 12 ++ gcc/testsuite/lib/gcc-defs.exp | 43 ++++--- include/ChangeLog | 6 + include/gomp-constants.h | 15 +++ libgomp/ChangeLog | 61 ++++++++++ libgomp/libgomp-plugin.h | 8 ++ libgomp/libgomp.h | 1 + libgomp/libgomp.map | 4 + libgomp/libgomp.texi | 39 +++++++ libgomp/oacc-host.c | 22 ++++ libgomp/oacc-init.c | 63 +++++++++- libgomp/openacc.f90 | 129 ++++++++++++++++++++- libgomp/openacc.h | 15 +++ libgomp/plugin/cuda-lib.def | 4 + libgomp/plugin/plugin-gcn.c | 11 ++ libgomp/plugin/plugin-hsa.c | 26 +++++ libgomp/plugin/plugin-nvptx.c | 87 +++++++++++++- libgomp/target.c | 2 +- libgomp/testsuite/libgomp-test-support.exp.in | 2 + .../libgomp.oacc-c-c++-common/acc_get_property-2.c | 68 +++++++++++ .../libgomp.oacc-c-c++-common/acc_get_property-3.c | 19 +++ .../acc_get_property-aux.c | 80 +++++++++++++ .../libgomp.oacc-c-c++-common/acc_get_property.c | 76 ++++++++++++ .../libgomp.oacc-fortran/acc_get_property.f90 | 93 +++++++++++++++ liboffloadmic/ChangeLog | 8 ++ liboffloadmic/plugin/libgomp-plugin-intelmic.cpp | 21 ++++ 58 files changed, 1290 insertions(+), 74 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/initlist118.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/nullptr45.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/spaceship-eq1.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/nontype-class27.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/spaceship-eq8.C create mode 100644 gcc/testsuite/g++.dg/diagnostic/enum1.C create mode 100644 gcc/testsuite/g++.dg/warn/Wunused-var-36.C create mode 100644 gcc/testsuite/gcc.dg/lto/pr93015_0.c create mode 100644 gcc/testsuite/gfortran.dg/inquiry_type_ref_5.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr91661.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr92990.f90 create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/acc_get_property-2.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/acc_get_property-3.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/acc_get_property-aux.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/acc_get_property.c create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/acc_get_property.f90