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-aarch64-next-allnoconfig in repository toolchain/ci/gcc.
from 3f075e56068 PR ipa/90401 adds 2ab89918e26 2019-06-14 Richard Biener rguenther@suse.de adds 3609f65491f PR c++/85552 - wrong instantiation of dtor for DMI. adds e3cc480c4e4 Add __cpp_lib_bind_front macro to <version> header adds bde783a9344 Disable -Wctor-dtor-privacy warnings for some standard types adds 16753006744 [NetBSD] Add support for the Arm EABI. adds 5f613a37a20 PR c++/90884 - stray note with -Wctor-dtor-privacy. * cla [...] adds 824e2c0e24d i386: Update SSE <-> integer move costs adds 6bc936d3dfb Use __builtin_mul_overflow in xmallocarray adds 2e24a52c031 Update preferred_stack_boundary only when expanding function call adds 1e2ed6565d6 2019-06-14 Steven G. Kargl kargl@gcc.gnu.org adds 9e404eed2cc Darwin, opts processing - Initial tidy. adds 88098bd2ed7 2019-06-14 Harald Anlauf anlauf@gmx.de adds a33e91df289 Daily bump. adds 1fcf995f952 rs6000: New iterator CCEITHER adds 85d732f6eac 2019-06-14 Steven G. Kargl kargl@gcc.gnu.org new f1a27d20b7f [openacc] Disable pass_thread_jumps for IFN_UNIQUE new 722ae48db95 PR middle-end/90779 * gimplify.c: Include omp-offload.h a [...] new bed223a0386 * config/i386/i386.md (and<mode>3): Generate zero-extends [...]
The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/ChangeLog | 87 +++++ gcc/DATESTAMP | 2 +- gcc/calls.c | 25 ++ gcc/config.gcc | 31 +- gcc/config.host | 2 +- gcc/config/arm/netbsd-eabi.h | 105 ++++++ gcc/config/arm/netbsd-elf.h | 25 +- gcc/config/darwin.opt | 397 ++++++++++++--------- gcc/config/i386/i386-features.c | 2 +- gcc/config/i386/i386.c | 17 +- gcc/config/i386/i386.h | 5 +- gcc/config/i386/i386.md | 157 ++++---- gcc/config/netbsd-elf.h | 14 + gcc/config/rs6000/rs6000.md | 37 +- gcc/cp/ChangeLog | 11 + gcc/cp/class.c | 8 +- gcc/cp/typeck2.c | 5 +- gcc/fortran/ChangeLog | 22 +- gcc/fortran/arith.c | 51 +-- gcc/fortran/dependency.c | 12 +- gcc/fortran/intrinsic.texi | 46 +-- gcc/fortran/trans-intrinsic.c | 15 +- gcc/function.c | 7 - gcc/gimplify.c | 50 ++- gcc/testsuite/ChangeLog | 40 +++ gcc/testsuite/c-c++-common/goacc/routine-5.c | 2 +- gcc/testsuite/g++.dg/cpp0x/nsdmi-list5.C | 30 ++ gcc/testsuite/g++.dg/warn/ctor-dtor-privacy-4.C | 5 + gcc/testsuite/g++.dg/warn/ctor-dtor-privacy-4.h | 7 + gcc/testsuite/gcc.dg/tree-ssa/ldist-26.c | 8 +- gcc/testsuite/gcc.target/i386/pr90765-1.c | 11 + gcc/testsuite/gcc.target/i386/pr90765-2.c | 18 + .../gfortran.dg/integer_exponentiation_4.f90 | 8 +- .../gfortran.dg/integer_exponentiation_5.F90 | 2 - gcc/testsuite/gfortran.dg/lrshift_1.f90 | 2 +- gcc/testsuite/gfortran.dg/no_range_check_1.f90 | 3 - gcc/testsuite/gfortran.dg/pr89646.f90 | 24 ++ gcc/testsuite/gfortran.dg/shiftalr_3.f90 | 42 +++ gcc/tree-loop-distribution.c | 66 +++- gcc/tree-ssa-threadbackward.c | 5 + libatomic/ChangeLog | 7 + libatomic/configure.tgt | 2 +- libgcc/ChangeLog | 10 + libgcc/config.host | 11 +- libgcc/config/arm/t-netbsd | 8 + libgcc/config/arm/t-netbsd-eabi | 18 + libgfortran/ChangeLog | 5 + libgfortran/runtime/memory.c | 13 +- libgomp/ChangeLog | 11 + libgomp/testsuite/libgomp.c/pr90779.c | 18 + libgomp/testsuite/libgomp.fortran/pr90779.f90 | 12 + .../testsuite/libgomp.oacc-c-c++-common/pr90009.c | 34 ++ libstdc++-v3/ChangeLog | 9 + libstdc++-v3/include/experimental/type_traits | 3 + libstdc++-v3/include/std/type_traits | 10 +- libstdc++-v3/include/std/version | 1 + 56 files changed, 1155 insertions(+), 423 deletions(-) create mode 100644 gcc/config/arm/netbsd-eabi.h create mode 100644 gcc/testsuite/g++.dg/cpp0x/nsdmi-list5.C create mode 100644 gcc/testsuite/g++.dg/warn/ctor-dtor-privacy-4.C create mode 100644 gcc/testsuite/g++.dg/warn/ctor-dtor-privacy-4.h create mode 100644 gcc/testsuite/gcc.target/i386/pr90765-1.c create mode 100644 gcc/testsuite/gcc.target/i386/pr90765-2.c create mode 100644 gcc/testsuite/gfortran.dg/pr89646.f90 create mode 100644 gcc/testsuite/gfortran.dg/shiftalr_3.f90 create mode 100644 libgcc/config/arm/t-netbsd-eabi create mode 100644 libgomp/testsuite/libgomp.c/pr90779.c create mode 100644 libgomp/testsuite/libgomp.fortran/pr90779.f90 create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/pr90009.c