This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk/gnu-master-aarch64-spec2k6-Os_LTO in repository toolchain/ci/gcc.
from ad0ce1a5e76 mksysinfo: actually use modified Statfs_t value adds b4af2395834 Add feature test macro for bounded array traits adds 55d0cc00ed5 PR c++/87378 - bogus -Wredundant-move warning. * typeck.c [...] adds 409a6c36b74 gcc/ PR rtl-optimization/88845 * config/rs6000/rs6000.c ( [...] adds ea101a01ea9 * encoding.c (DFmode): #undef before #define. adds 02daf5d2ca0 PR c++/89576 - if constexpr of lambda capture. adds aa49bda0083 PR c++/87148 * init.c (build_value_init_noctor): Ignore f [...] adds bc17f5fddc3 PR c++/89381 - implicit copy and using-declaration. adds 6a7ceb2651b compiler: emit underlying constant in array_type length export adds f819732854d 2019-03-06 Harald Anlauf anlauf@gmx.de adds 5c3d26385e8 Daily bump. adds 670c309072a PR go/89227 * go-gcc.cc (Gcc_backend::function): Set TREE [...] adds 02a7fc594d3 PR c++/89585 * doc/extend.texi (Basic Asm): Document qual [...] adds 791a496442c 2019-03-07 Richard Biener rguenther@suse.de adds 5ef811b4b63 Revert function removal made in r264561. adds 61dcf2e184c P0356R5 Simplified partial function application new f24442bd8f8 Update C++20 status table in libstdc++ manual new 682ee94ec1d Fix new test to run as well as compile new 5e43308b5db 2019-04-07 Richard Biener rguenther@suse.de
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 | 35 ++++ gcc/DATESTAMP | 2 +- gcc/cfgloopmanip.c | 5 + gcc/config/rs6000/rs6000.c | 2 +- gcc/cp/ChangeLog | 31 ++++ gcc/cp/class.c | 4 +- gcc/cp/init.c | 9 + gcc/cp/parser.c | 15 +- gcc/cp/semantics.c | 4 +- gcc/cp/typeck.c | 31 +++- gcc/doc/extend.texi | 2 + gcc/dwarf2out.c | 18 ++ gcc/fortran/ChangeLog | 5 + gcc/fortran/expr.c | 10 +- gcc/go/ChangeLog | 6 + gcc/go/go-gcc.cc | 1 + gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/types.cc | 15 +- gcc/lra.c | 67 ++++--- gcc/testsuite/ChangeLog | 36 ++++ gcc/testsuite/g++.dg/asm-qual-3.C | 8 +- gcc/testsuite/g++.dg/cpp0x/Wredundant-move1.C | 3 +- gcc/testsuite/g++.dg/cpp0x/Wredundant-move7.C | 59 +++++++ gcc/testsuite/g++.dg/cpp0x/implicit16.C | 37 ++++ gcc/testsuite/g++.dg/cpp1z/constexpr-if15.C | 2 +- gcc/testsuite/g++.dg/cpp1z/constexpr-if28.C | 11 ++ gcc/testsuite/g++.dg/ext/flexary34.C | 10 ++ gcc/testsuite/gcc.dg/torture/pr89595.c | 39 +++++ gcc/testsuite/gcc.target/i386/pr89618.c | 21 +++ gcc/testsuite/gcc.target/powerpc/pr88845.c | 24 +++ gcc/testsuite/gfortran.dg/substr_8.f90 | 15 ++ gcc/tree-inline.c | 16 +- gcc/tree-ssa-dom.c | 62 +++++-- libobjc/ChangeLog | 193 +++++++++++---------- libobjc/encoding.c | 1 + libstdc++-v3/ChangeLog | 21 +++ libstdc++-v3/doc/html/manual/status.html | 26 +-- libstdc++-v3/doc/xml/manual/status_cxx2020.xml | 25 +-- libstdc++-v3/include/std/functional | 100 +++++++++++ libstdc++-v3/include/std/type_traits | 2 + libstdc++-v3/include/std/version | 1 + .../20_util/function_objects/bind_front/1.cc | 176 +++++++++++++++++++ .../testsuite/20_util/is_bounded_array/value.cc | 6 + .../testsuite/20_util/is_unbounded_array/value.cc | 6 + 44 files changed, 961 insertions(+), 203 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/Wredundant-move7.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/implicit16.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/constexpr-if28.C create mode 100644 gcc/testsuite/g++.dg/ext/flexary34.C create mode 100644 gcc/testsuite/gcc.dg/torture/pr89595.c create mode 100644 gcc/testsuite/gcc.target/i386/pr89618.c create mode 100644 gcc/testsuite/gcc.target/powerpc/pr88845.c create mode 100644 gcc/testsuite/gfortran.dg/substr_8.f90 create mode 100644 libstdc++-v3/testsuite/20_util/function_objects/bind_front/1.cc