From: Jason Merrill Date: Mon, 10 Feb 2020 13:12:07 +0000 (+0100) Subject: c++: Fix constexpr if and braced functional cast. X-Git-Tag: upstream/12.2.0~18423 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c2368db567a853b0765833b3bd4e7934f3c6be61;p=platform%2Fupstream%2Fgcc.git c++: Fix constexpr if and braced functional cast. While partially instantiating a generic lambda, we can encounter pack expansions or constexpr if where we can't actually do the substitution immediately, and instead remember a partial instantiation context in *_EXTRA_ARGS. This includes any local_specializations used in the pattern or condition. In this testcase our tree walk wasn't finding the use of i because we weren't walking into the type of a CONSTRUCTOR. Fixed by moving the code for doing that from find_parameter_packs_r into cp_walk_subtrees. 2020-02-11 Jason Merrill PR c++/92583 PR c++/92654 * tree.c (cp_walk_subtrees): Walk CONSTRUCTOR types here. * pt.c (find_parameter_packs_r): Not here. --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 6d1eaa4..e0dd038 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,10 @@ +2020-02-12 Jason Merrill + + PR c++/92583 + PR c++/92654 + * tree.c (cp_walk_subtrees): Walk CONSTRUCTOR types here. + * pt.c (find_parameter_packs_r): Not here. + 2020-02-12 Iain Sandoe * coroutines.cc (build_actor_fn): Implement deallocation function diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index c2d3a98..6e7f455 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -3924,9 +3924,6 @@ find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data) case TEMPLATE_DECL: if (!DECL_TEMPLATE_TEMPLATE_PARM_P (t)) return NULL_TREE; - gcc_fallthrough(); - - case CONSTRUCTOR: cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd, ppd->visited); return NULL_TREE; diff --git a/gcc/cp/tree.c b/gcc/cp/tree.c index eb540f8..736ef6f 100644 --- a/gcc/cp/tree.c +++ b/gcc/cp/tree.c @@ -5024,6 +5024,11 @@ cp_walk_subtrees (tree *tp, int *walk_subtrees_p, walk_tree_fn func, *walk_subtrees_p = 0; break; + case CONSTRUCTOR: + if (COMPOUND_LITERAL_P (*tp)) + WALK_SUBTREE (TREE_TYPE (*tp)); + break; + case TRAIT_EXPR: WALK_SUBTREE (TRAIT_EXPR_TYPE1 (*tp)); WALK_SUBTREE (TRAIT_EXPR_TYPE2 (*tp)); diff --git a/gcc/testsuite/g++.dg/cpp0x/nondeduced7.C b/gcc/testsuite/g++.dg/cpp0x/nondeduced7.C index a8aa073..eb5d5fa 100644 --- a/gcc/testsuite/g++.dg/cpp0x/nondeduced7.C +++ b/gcc/testsuite/g++.dg/cpp0x/nondeduced7.C @@ -2,5 +2,5 @@ // { dg-do compile { target c++11 } } template struct A; -template struct A {}; // { dg-error "partial specialization" } +template struct A {}; // { dg-error "partial specialization|involves template parameter" } A a; diff --git a/gcc/testsuite/g++.dg/cpp1z/constexpr-if-lambda3.C b/gcc/testsuite/g++.dg/cpp1z/constexpr-if-lambda3.C new file mode 100644 index 0000000..34615f7 --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp1z/constexpr-if-lambda3.C @@ -0,0 +1,24 @@ +// PR c++/92583 +// { dg-do compile { target c++17 } } + +template struct a { + constexpr operator int() { return 42; } +}; +template using b = int; +template struct e {}; +template using h = e; +template void apply(j f, e) { + (f(a{}), ...); +} +template void m(j f) { + using k = b; + using n = h; + apply(f, n{}); +} +template void o() { + auto p = [](auto i) { + if constexpr (a{}) ; + }; + m(p); +} +auto q() { o<0, 1>; }