This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 5f71c0b4196 Do not define DFP builtin functions, if DFP has been disabled. new 1a931bc82ea PR c++/92206 - ICE with typedef to dependent alias. new 4dd28a2cc2d Fix constrained alias template transparency. new 7dd9f591c3d Implement P1814R0, CTAD for alias templates.
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/c-family/ChangeLog | 4 + gcc/c-family/c-cppbuiltin.c | 4 +- gcc/cp/ChangeLog | 33 ++ gcc/cp/call.c | 2 +- gcc/cp/constraint.cc | 34 +- gcc/cp/cp-tree.h | 11 +- gcc/cp/cxx-pretty-print.c | 6 +- gcc/cp/decl.c | 2 +- gcc/cp/error.c | 6 +- gcc/cp/parser.c | 11 +- gcc/cp/pt.c | 604 ++++++++++++++++----- gcc/cp/tree.c | 14 +- gcc/cp/typeck.c | 11 +- gcc/testsuite/g++.dg/cpp0x/alias-decl-pr92206-4.C | 11 + gcc/testsuite/g++.dg/cpp1z/class-deduction46.C | 2 +- .../g++.dg/cpp2a/class-deduction-alias1.C | 27 + .../g++.dg/cpp2a/class-deduction-alias2.C | 22 + gcc/testsuite/g++.dg/cpp2a/concepts-alias.C | 9 +- gcc/testsuite/g++.dg/cpp2a/concepts-alias3.C | 10 + gcc/testsuite/g++.dg/cpp2a/concepts-alias4.C | 10 + gcc/testsuite/g++.dg/cpp2a/explicit11.C | 2 +- gcc/testsuite/g++.dg/cpp2a/feat-cxx2a.C | 4 +- 22 files changed, 659 insertions(+), 180 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/alias-decl-pr92206-4.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/class-deduction-alias1.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/class-deduction-alias2.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-alias3.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-alias4.C