summaryrefslogtreecommitdiff
path: root/gcc/cp/tree.c
diff options
context:
space:
mode:
authorPatrick Palka <ppalka@redhat.com>2021-01-12 09:34:41 -0500
committerPatrick Palka <ppalka@redhat.com>2021-01-12 09:34:41 -0500
commite0bec6ceac47752616dd9fe0801344ed45db2fd3 (patch)
tree9b880f8e69f5ffa5e057206f31886579c42782a0 /gcc/cp/tree.c
parent52a170b1a1818b7521c25e76271638a448b3f630 (diff)
downloadgcc-e0bec6ceac47752616dd9fe0801344ed45db2fd3.tar.gz
c++: Fix ICE with CTAD in concept [PR98611]
This patch teaches cp_walk_subtrees to visit the template represented by a CTAD placeholder, which would otherwise be not visited during find_template_parameters. The template may be a template template parameter (as in the first testcase), or it may implicitly use the template parameters of an enclosing class template (as in the second testcase), and in either case we need to visit this tree to record the template parameters used therein for later satisfaction. gcc/cp/ChangeLog: PR c++/98611 * tree.c (cp_walk_subtrees) <case TEMPLATE_TYPE_PARM>: Visit the template of a CTAD placeholder. gcc/testsuite/ChangeLog: PR c++/98611 * g++.dg/cpp2a/concepts-ctad1.C: New test. * g++.dg/cpp2a/concepts-ctad2.C: New test.
Diffstat (limited to 'gcc/cp/tree.c')
-rw-r--r--gcc/cp/tree.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/cp/tree.c b/gcc/cp/tree.c
index c536eb581a7..d339036e88e 100644
--- a/gcc/cp/tree.c
+++ b/gcc/cp/tree.c
@@ -5173,12 +5173,15 @@ cp_walk_subtrees (tree *tp, int *walk_subtrees_p, walk_tree_fn func,
result = NULL_TREE;
switch (code)
{
+ case TEMPLATE_TYPE_PARM:
+ if (template_placeholder_p (*tp))
+ WALK_SUBTREE (CLASS_PLACEHOLDER_TEMPLATE (*tp));
+ /* Fall through. */
case DEFERRED_PARSE:
case TEMPLATE_TEMPLATE_PARM:
case BOUND_TEMPLATE_TEMPLATE_PARM:
case UNBOUND_CLASS_TEMPLATE:
case TEMPLATE_PARM_INDEX:
- case TEMPLATE_TYPE_PARM:
case TYPEOF_TYPE:
case UNDERLYING_TYPE:
/* None of these have subtrees other than those already walked