This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 96680ffca59 Daily bump. new 9e37fbc219b PR c++/80639 - ICE with invalid PMF initialization. new bb9012bf8ce PR c++/80831 - ICE with -fsyntax-only. new 689770fa353 PR c++/80174 - ICE with partial specialization of member t [...] new 77aee073b54 PR c++/81102 - Wrong error with partial specialization. new c2ca6e199d6 PR c++/80614 - Wrong mangling for C++17 noexcept type new 23f59d67bd8 PR c++/80465 - ICE with generic lambda with noexcept-specifier. new 058e778f200 PR c++/81045 - Wrong type-dependence with auto return type.
The 7 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 | 31 +++++++++ gcc/cp/call.c | 3 + gcc/cp/decl2.c | 10 +-- gcc/cp/lambda.c | 9 +-- gcc/cp/mangle.c | 5 ++ gcc/cp/pt.c | 78 ++++++++++++++-------- 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-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 +++++++ 16 files changed, 306 insertions(+), 41 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp1y/auto-fn39.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