2020-04-20 Nathan Sidwell <nathan@acm.org>
+ PR 94454 - tpl-tpl-parms are not canonicalizable types
+ * pt.c (canonical_type_parameter): Assert not a tpl-tpl-parm.
+ (process_template_parm): tpl-tpl-parms are structural.
+ (rewrite_template_parm): Propagate structuralness.
+
PR 94454 - Expr pack expansion equality
* tree.c (cp_tree_equal): [TEMPLATE_ID_EXPR, default] Refactor.
[EXPR_PACK_EXPANSION]: Add.
{
tree list;
int idx = TEMPLATE_TYPE_IDX (type);
+
+ gcc_assert (TREE_CODE (type) != TEMPLATE_TEMPLATE_PARM);
+
if (!canonical_template_parms)
vec_alloc (canonical_template_parms, idx + 1);
processing_template_decl,
decl, TREE_TYPE (parm));
TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
- TYPE_CANONICAL (t) = canonical_type_parameter (t);
+ if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
+ SET_TYPE_STRUCTURAL_EQUALITY (t);
+ else
+ TYPE_CANONICAL (t) = canonical_type_parameter (t);
}
DECL_ARTIFICIAL (decl) = 1;
SET_DECL_TEMPLATE_PARM_P (decl);
TEMPLATE_PARM_PARAMETER_PACK (newidx)
= TEMPLATE_PARM_PARAMETER_PACK (oldidx);
TYPE_STUB_DECL (newtype) = TYPE_NAME (newtype) = newdecl;
- TYPE_CANONICAL (newtype) = canonical_type_parameter (newtype);
+ if (TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (olddecl)))
+ SET_TYPE_STRUCTURAL_EQUALITY (newtype);
+ else
+ TYPE_CANONICAL (newtype) = canonical_type_parameter (newtype);
if (TREE_CODE (olddecl) == TEMPLATE_DECL)
{