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_debug in repository toolchain/ci/gcc.
from 9fafffe8f34 2019-06-08 Prathamesh Kulkarni prathamesh.kulkarni@linaro.org adds 202d21f034e PR c++/72845 * g++.dg/cpp0x/noexcept41.C: New test. adds bff2350b1dc PR c++/77548 * g++.dg/other/pr77548.C: New test. adds 94f63137131 Use consistent spelling of PCLMUL instruction adds bd553281197 2019-06-08 Thomas Koenig tkoenig@gcc.gnu.org Tomáš Trn [...] adds 19b9972d36c PR c++/52269 * g++.dg/cpp0x/constexpr-decltype4.C: New test. adds 2134721052b 2019-06-08 Paul Thomas pault@gcc.gnu.org adds 1fe150d141d 2019-06-08 Edward Smith-Rowland 3dw4rd@verizon.net adds e1e3da4b5c8 Daily bump. adds 96161eee929 2019-06-09 Paul Thomas pault@gcc.gnu.org adds 6da8cd22dff PR c++/60366 * g++.dg/cpp0x/lambda/lambda-ice32.C: New test. adds a032a26894e PR c++/65175 * g++.dg/cpp0x/alias-decl-69.C: New test. adds eabef64f6e1 Daily bump. adds 8482ddd3ae2 Fix build with --enable-gather-detailed-mem-stats. adds 2d19df75657 testsuite - Require alias support in a test using it. adds 1a15313ca9b Implement N disk counters for single value and indirect cal [...] adds 648bf2d754d Dump histograms only if present. adds 7609272099b Update a bit dump format. adds b5dc2b70034 Add alloc_size for libiberty memory allocation functions.
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 45 +++++ gcc/DATESTAMP | 2 +- gcc/doc/invoke.texi | 16 +- gcc/fortran/ChangeLog | 18 ++ gcc/fortran/trans-expr.c | 29 +-- gcc/fortran/trans-types.c | 3 + gcc/gcov-io.h | 7 + gcc/hash-map.h | 6 +- gcc/hash-table.h | 2 +- gcc/ipa-profile.c | 12 +- gcc/testsuite/ChangeLog | 46 ++++- gcc/testsuite/g++.dg/cpp0x/alias-decl-69.C | 40 ++++ gcc/testsuite/g++.dg/cpp0x/constexpr-decltype4.C | 21 ++ gcc/testsuite/g++.dg/cpp0x/lambda/lambda-ice32.C | 9 + gcc/testsuite/g++.dg/cpp0x/noexcept41.C | 12 ++ gcc/testsuite/g++.dg/other/pr77548.C | 9 + gcc/testsuite/gcc.dg/attr-copy-6.c | 1 + .../gfortran.dg/assumed_rank_bounds_3.f90 | 219 +++++++++++++++++++++ .../gfortran.dg/deferred_character_33.f90 | 35 ++++ .../gfortran.dg/deferred_character_33a.f90 | 9 + gcc/testsuite/gfortran.dg/proc_ptr_51.f90 | 38 ++++ gcc/tree-profile.c | 6 +- gcc/value-prof.c | 211 ++++++++++---------- gcc/value-prof.h | 4 + include/ChangeLog | 10 + include/ansidecl.h | 25 +++ include/libiberty.h | 6 +- libgcc/ChangeLog | 24 +++ libgcc/Makefile.in | 6 +- libgcc/libgcov-merge.c | 83 +++++--- libgcc/libgcov-profiler.c | 33 ++-- libgcc/libgcov.h | 29 ++- libstdc++-v3/ChangeLog | 8 + .../requirements/constexpr_iter.cc | 42 ++++ .../array/requirements/constexpr_iter.cc | 41 ++++ 35 files changed, 909 insertions(+), 198 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/alias-decl-69.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/constexpr-decltype4.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-ice32.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/noexcept41.C create mode 100644 gcc/testsuite/g++.dg/other/pr77548.C create mode 100644 gcc/testsuite/gfortran.dg/assumed_rank_bounds_3.f90 create mode 100644 gcc/testsuite/gfortran.dg/deferred_character_33.f90 create mode 100644 gcc/testsuite/gfortran.dg/deferred_character_33a.f90 create mode 100644 gcc/testsuite/gfortran.dg/proc_ptr_51.f90 create mode 100644 libstdc++-v3/testsuite/21_strings/basic_string_view/requirement [...] create mode 100644 libstdc++-v3/testsuite/23_containers/array/requirements/constex [...]