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-allnoconfig in repository toolchain/ci/gcc.
from e95722140ec PR c++/91921 - stray warning with -Woverloaded-virtual. * [...] adds aeca84f4c1e PR c++/91889 - follow-up fix for DR 2352. * call.c (invol [...] adds c6331a1f238 2019-09-28 Steven G. Kargl kargl@gcc.gnu.org adds 9587be52124 2019-09-28 Steven G. Kargl kargl@gcc.ngu.org adds cb9a5db89bd 2019-09-28 Jerry DeLisle jvdelisle@gcc.gnu.org adds 1334eb86c38 [Darwin, PPC, Mode Iterators 4/n] Update macho_high. adds a4fcce58dff 2019-09-28 François Dumont fdumont@gcc.gnu.org adds 1cbc7e9bf01 Daily bump. adds 8ee0996558f 2019-09-28 Jerry DeLisle jvdelisle@gcc.ngu.org adds 49f75e008c0 This patch is to add the support for float from/to long con [...] adds 56f22142aba gcc/ChangeLog adds e9eb6ea5605 PR bootstrap/90543 * optc-save-gen.awk: Fix up printing s [...] adds e020479cd65 2019-09-29 Paul Thomas pault@gcc.gnu.org
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 27 ++++++++ gcc/DATESTAMP | 2 +- gcc/config/darwin.c | 7 +- gcc/config/rs6000/darwin.md | 29 ++------ gcc/config/rs6000/rs6000.c | 7 +- gcc/config/rs6000/vsx.md | 45 ++++++++++++ gcc/cp/ChangeLog | 7 ++ gcc/cp/call.c | 46 +++++++++++++ gcc/fortran/ChangeLog | 36 ++++++++++ gcc/fortran/decl.c | 9 +++ gcc/fortran/io.c | 13 +++- gcc/fortran/match.c | 18 +++++ gcc/fortran/resolve.c | 4 ++ gcc/fortran/trans-array.c | 3 +- gcc/fortran/trans-expr.c | 23 ++++++- gcc/fortran/trans-stmt.c | 36 ++++++++++ gcc/fortran/trans.h | 1 + gcc/optc-save-gen.awk | 2 +- gcc/testsuite/ChangeLog | 27 ++++++++ gcc/testsuite/g++.dg/cpp0x/ref-bind3.C | 24 +++---- gcc/testsuite/g++.dg/cpp0x/ref-bind4.C | 56 +++++++++++++++ gcc/testsuite/g++.dg/cpp0x/ref-bind5.C | 17 +++++ gcc/testsuite/g++.dg/cpp0x/ref-bind6.C | 12 ++++ gcc/testsuite/g++.old-deja/g++.pt/spec35.C | 8 +-- .../gcc.target/powerpc/conv-vectorize-1.c | 37 ++++++++++ .../gcc.target/powerpc/conv-vectorize-2.c | 37 ++++++++++ gcc/testsuite/gfortran.dg/coarray_poly_9.f90 | 38 ++++++++++ gcc/testsuite/gfortran.dg/pr91802.f90 | 9 +++ gcc/testsuite/gfortran.dg/pr91864.f90 | 22 ++++++ libgfortran/ChangeLog | 9 +++ libgfortran/io/io.h | 1 + libgfortran/io/transfer.c | 23 ++++--- libstdc++-v3/ChangeLog | 30 ++++++++ libstdc++-v3/include/bits/stl_algo.h | 8 +-- libstdc++-v3/include/debug/functions.h | 30 +++++--- libstdc++-v3/include/debug/helper_functions.h | 53 +++++++++++++- libstdc++-v3/include/debug/macros.h | 80 +++++++++++++--------- .../25_algorithms/binary_search/constexpr.cc | 2 +- .../testsuite/25_algorithms/is_sorted/constexpr.cc | 2 +- .../testsuite/25_algorithms/merge/constexpr.cc | 4 +- 40 files changed, 728 insertions(+), 116 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/ref-bind4.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/ref-bind5.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/ref-bind6.C create mode 100644 gcc/testsuite/gcc.target/powerpc/conv-vectorize-1.c create mode 100644 gcc/testsuite/gcc.target/powerpc/conv-vectorize-2.c create mode 100644 gcc/testsuite/gfortran.dg/coarray_poly_9.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr91802.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr91864.f90