This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch gcc-7-branch in repository gcc.
from cffa61559ac Fix array decay handling in constant expressions. new 7f989b0ede7 PR c++/80384 - ICE with dependent noexcept-specifier new 62ec8be4cda PR c++/80614 - Wrong mangling for C++17 noexcept type new d0100c8e1d0 PR c++/80465 - ICE with generic lambda with noexcept-specifier. new aed3abdfdfd PR c++/80639 - ICE with invalid PMF initialization. new 1223859fc0a PR c++/80831 - ICE with -fsyntax-only. new 9e8989ee574 PR c++/80174 - ICE with partial specialization of member t [...] new 643b8efdc09 PR c++/81102 - Wrong error with partial specialization. new 98af81b1e38 PR c++/81045 - Wrong type-dependence with auto return type.
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/cp/ChangeLog | 33 +++++++++ gcc/cp/call.c | 3 + gcc/cp/decl2.c | 10 +-- gcc/cp/lambda.c | 9 ++- gcc/cp/mangle.c | 5 ++ gcc/cp/pt.c | 85 +++++++++++++++------- gcc/cp/typeck.c | 5 +- gcc/testsuite/g++.dg/cpp1y/auto-fn27.C | 2 +- gcc/testsuite/g++.dg/cpp1y/auto-fn39.C | 48 ++++++++++++ gcc/testsuite/g++.dg/cpp1z/noexcept-type15.C | 11 +++ gcc/testsuite/g++.dg/cpp1z/noexcept-type16.C | 11 +++ gcc/testsuite/g++.dg/cpp1z/noexcept-type17.C | 7 ++ gcc/testsuite/g++.dg/other/fsyntax-only1.C | 45 ++++++++++++ .../g++.dg/template/partial-specialization6.C | 28 +++++++ .../g++.dg/template/partial-specialization7.C | 40 ++++++++++ gcc/testsuite/g++.dg/template/partial5.C | 2 +- gcc/testsuite/g++.dg/template/ptrmem31.C | 23 ++++++ 17 files changed, 326 insertions(+), 41 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp1y/auto-fn39.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/noexcept-type15.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/noexcept-type16.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/noexcept-type17.C create mode 100644 gcc/testsuite/g++.dg/other/fsyntax-only1.C create mode 100644 gcc/testsuite/g++.dg/template/partial-specialization6.C create mode 100644 gcc/testsuite/g++.dg/template/partial-specialization7.C create mode 100644 gcc/testsuite/g++.dg/template/ptrmem31.C