This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 1fc763b037a Fix bug in an OpenACC async test case new f0efd2e81a5 2017-12-01 Paul Thomas pault@gcc.gnu.org new 962c27930ef Add noexcept to std::integral_constant members new f4c233de34b Use value-init syntax in std::__detail::__airy new 5233a26e6eb Remove stray semi-colons at namespace scope new ddbe62d4a93 Add [[noreturn]] attributes to fix warning new 747afe893a4 Use const char* to fix -Wwrite-strings warning new e2c74da1f21 Fix -Wempty-body warnings for debug assertions new fc2e6008e12 Add comment to fix -Wfallthrough warning
The 8 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/fortran/ChangeLog | 53 +++++++++++++++++++++++ gcc/fortran/decl.c | 47 +++++++++++++------- gcc/fortran/resolve.c | 25 +++++++++-- gcc/fortran/trans-array.c | 22 ++++++++-- gcc/fortran/trans-decl.c | 9 +++- gcc/fortran/trans-expr.c | 3 +- gcc/fortran/trans-io.c | 53 +++++++++++++++++++---- gcc/testsuite/ChangeLog | 25 +++++++++++ gcc/testsuite/gfortran.dg/pdt_10.f03 | 7 +-- gcc/testsuite/gfortran.dg/pdt_19.f03 | 18 ++++++++ gcc/testsuite/gfortran.dg/pdt_20.f03 | 20 +++++++++ gcc/testsuite/gfortran.dg/pdt_21.f03 | 15 +++++++ gcc/testsuite/gfortran.dg/pdt_22.f03 | 23 ++++++++++ gcc/testsuite/gfortran.dg/pdt_23.f03 | 33 ++++++++++++++ gcc/testsuite/gfortran.dg/pdt_24.f03 | 11 +++++ gcc/testsuite/gfortran.dg/pdt_25.f03 | 43 ++++++++++++++++++ gcc/testsuite/gfortran.dg/pdt_4.f03 | 5 ++- libstdc++-v3/ChangeLog | 24 ++++++++++ libstdc++-v3/include/bits/locale_facets_nonio.tcc | 1 + libstdc++-v3/include/bits/node_handle.h | 12 +++-- libstdc++-v3/include/bits/regex_executor.tcc | 4 +- libstdc++-v3/include/bits/uniform_int_dist.h | 2 +- libstdc++-v3/include/ext/ropeimpl.h | 2 +- libstdc++-v3/include/std/type_traits | 4 +- libstdc++-v3/include/std/utility | 2 +- libstdc++-v3/include/tr1/modified_bessel_func.tcc | 4 +- libstdc++-v3/libsupc++/nested_exception.h | 2 + 27 files changed, 419 insertions(+), 50 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/pdt_19.f03 create mode 100644 gcc/testsuite/gfortran.dg/pdt_20.f03 create mode 100644 gcc/testsuite/gfortran.dg/pdt_21.f03 create mode 100644 gcc/testsuite/gfortran.dg/pdt_22.f03 create mode 100644 gcc/testsuite/gfortran.dg/pdt_23.f03 create mode 100644 gcc/testsuite/gfortran.dg/pdt_24.f03 create mode 100644 gcc/testsuite/gfortran.dg/pdt_25.f03