]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
c++: constantness of non-dependent NTTP argument [PR107437]
authorPatrick Palka <ppalka@redhat.com>
Sat, 17 Dec 2022 16:24:44 +0000 (11:24 -0500)
committerPatrick Palka <ppalka@redhat.com>
Sat, 17 Dec 2022 16:24:44 +0000 (11:24 -0500)
Here we're rejecting the use of the lambda capture of 't' (of empty
type) as a template argument ultimately because convert_nontype_argument
checks constantness using is_constant_expression, which returns false
for lambda captures since want_rval=false.  But in this case I believe
an lvalue-to-rvalue conversion of the argument is implied, so we should
be using is_rvalue_constant_expression instead (which would return true
here).

However, it doesn't seem necessary to consider constantness at all
when deciding whether to instantiate a non-dependent argument in
convert_nontype_argument.  So this patch gets rid of the problematic
constantness test altogether, which incidentally also fixes the similar
dg-ice'd testcase from PR87765.  This is in line with a similar
change we made to finish_decltype_type in r12-7564-gec0f53a3a542e7.

PR c++/107437
PR c++/87765

gcc/cp/ChangeLog:

* pt.cc (convert_nontype_argument): Relax is_nondep_const_expr
test to !inst_dep_expr_p.

gcc/testsuite/ChangeLog:

* g++.dg/cpp1y/lambda-generic-107437.C: New test.
* g++.dg/cpp1z/constexpr-lambda26.C: Remove dg-ice.

gcc/cp/pt.cc
gcc/testsuite/g++.dg/cpp1y/lambda-generic-107437.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp1z/constexpr-lambda26.C

index bc566ab702b883dd0d949198270db57a08034e03..2516cca590ee0015daccdd7a07c5f7e3d85f6830 100644 (file)
@@ -7318,7 +7318,7 @@ convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
       && has_value_dependent_address (expr))
     /* If we want the address and it's value-dependent, don't fold.  */;
   else if (processing_template_decl
-          && is_nondependent_constant_expression (expr))
+          && !instantiation_dependent_expression_p (expr))
     non_dep = true;
   if (error_operand_p (expr))
     return error_mark_node;
diff --git a/gcc/testsuite/g++.dg/cpp1y/lambda-generic-107437.C b/gcc/testsuite/g++.dg/cpp1y/lambda-generic-107437.C
new file mode 100644 (file)
index 0000000..f9b4e01
--- /dev/null
@@ -0,0 +1,21 @@
+// PR c++/107437
+// { dg-do compile { target c++14 } }
+
+struct integral_constant {
+  constexpr operator int() const { return 42; }
+};
+
+template<int N>
+struct A {
+  static constexpr int value = N;
+};
+
+template<class T>
+void f(T t) {
+  [=](auto) {
+    A<t> a; // { dg-bogus "constant" }
+    return a.value;
+  }(0);
+}
+
+template void f(integral_constant);
index 0cdb400d21c4f3fca5561a4c87835a10a69bee4d..e66cd1dee64232ac1e35159032c3a93db319ef16 100644 (file)
@@ -1,7 +1,6 @@
 // PR c++/87765
 // { dg-do compile { target c++17 } }
 // { dg-additional-options "-fchecking" }
-// { dg-ice "cxx_eval_constant_expression" }
 
 template <int N>
 using foo = int;