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-lts-allyesconfig in repository toolchain/ci/gcc.
from 04637536a6b MSP430: Dont add offsets to addresses when emitting asm for [...] adds efc1f3577f3 x86: Restore the frame pointer in word_mode adds 8d213cbbe18 c++: lambdas with internal linkage are different to no-link [...] adds efbf7392079 ICE on wrong code [PR94192]. adds ec72bb0c48c Commit test case for PR 87644, which has fixed itself somehow. adds f8e72b8d9f2 Darwin, testsuite: Fix darwin-version-1.c fails with XCode 11.4. adds 2dd4ceacd8b Minor documentation fix adds ee26baf4a81 coroutines: Rename the coroutines cpp builtin. adds 077dd9b3f17 c++: More self-modifying constexpr init [PR94470] adds 1dcb7799165 c++: Infinite diagnostic loop with decltype([]{}) [PR94521] adds 09f04139024 PR c/92326 - wrong bound in zero-length array diagnostics adds d28e5b145f2 Update and correct documentation of -Wall and -Wrestrict. adds e020d2bbe80 Daily bump. adds 7eee265e6bd c++: Improve redeclared parameter name diagnostic [PR94588] new 597601aa7a0 libstdc++: Make comparison category comparisons noexcept (P [...]
The 1 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 | 17 ++++++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 11 ++++ gcc/c-family/c-cppbuiltin.c | 2 +- gcc/c-family/c-pretty-print.c | 4 +- gcc/config/i386/i386.c | 11 +++- gcc/cp/ChangeLog | 29 ++++++++++ gcc/cp/constexpr.c | 19 +++---- gcc/cp/decl2.c | 15 +++++ gcc/cp/error.c | 2 + gcc/cp/name-lookup.c | 9 ++- gcc/cp/pt.c | 8 +++ gcc/cp/tree.c | 18 ++---- gcc/doc/extend.texi | 5 +- gcc/doc/invoke.texi | 8 ++- gcc/fortran/ChangeLog | 8 +++ gcc/fortran/resolve.c | 1 + gcc/fortran/simplify.c | 4 ++ gcc/testsuite/ChangeLog | 53 +++++++++++++++++ gcc/testsuite/c-c++-common/Warray-bounds-8.c | 22 ++++++++ gcc/testsuite/g++.dg/abi/lambda-vis.C | 2 +- gcc/testsuite/g++.dg/coroutines/coro-pre-proc.C | 4 +- gcc/testsuite/g++.dg/coroutines/coro.h | 2 +- gcc/testsuite/g++.dg/cpp0x/lambda/lambda-mangle.C | 7 ++- gcc/testsuite/g++.dg/cpp0x/lambda/pr94426-1.C | 17 ++++++ gcc/testsuite/g++.dg/cpp0x/lambda/pr94426-2.C | 20 +++++++ gcc/testsuite/g++.dg/cpp1y/constexpr-nsdmi8.C | 11 ++++ gcc/testsuite/g++.dg/cpp1y/constexpr-nsdmi9.C | 16 ++++++ gcc/testsuite/g++.dg/cpp2a/lambda-uneval12.C | 13 +++++ gcc/testsuite/g++.dg/diagnostic/redeclaration-1.C | 2 +- gcc/testsuite/g++.dg/init/array57.C | 16 ++++++ gcc/testsuite/g++.dg/opt/dump1.C | 8 +-- gcc/testsuite/gcc.dg/Warray-bounds-46.c | 22 ++++---- gcc/testsuite/gcc.dg/Warray-bounds-49.c | 20 +++---- gcc/testsuite/gcc.dg/darwin-version-1.c | 4 +- .../gfortran.dg/bound_resolve_after_error_1.f90 | 13 +++++ gcc/testsuite/gfortran.dg/variable_parameter.f90 | 22 ++++++++ libstdc++-v3/ChangeLog | 11 ++++ libstdc++-v3/include/std/coroutine | 2 +- libstdc++-v3/libsupc++/compare | 2 +- .../18_support/comparisons/categories/94565.cc | 66 ++++++++++++++++++++++ 41 files changed, 453 insertions(+), 75 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/Warray-bounds-8.c create mode 100644 gcc/testsuite/g++.dg/cpp0x/lambda/pr94426-1.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/lambda/pr94426-2.C create mode 100644 gcc/testsuite/g++.dg/cpp1y/constexpr-nsdmi8.C create mode 100644 gcc/testsuite/g++.dg/cpp1y/constexpr-nsdmi9.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/lambda-uneval12.C create mode 100644 gcc/testsuite/g++.dg/init/array57.C create mode 100644 gcc/testsuite/gfortran.dg/bound_resolve_after_error_1.f90 create mode 100644 gcc/testsuite/gfortran.dg/variable_parameter.f90 create mode 100644 libstdc++-v3/testsuite/18_support/comparisons/categories/94565.cc