PR c++/93257 - consteval void function.
authorJason Merrill <jason@redhat.com>
Wed, 15 Jan 2020 19:45:24 +0000 (14:45 -0500)
committerJason Merrill <jason@redhat.com>
Wed, 15 Jan 2020 20:12:03 +0000 (15:12 -0500)
A prvalue can have void type, and if it doesn't do anything prohibited in a
constant expression, it's vacuously constant.

* constexpr.c (verify_constant): Allow void_node.

gcc/cp/ChangeLog
gcc/cp/constexpr.c
gcc/testsuite/g++.dg/cpp2a/consteval-void1.C [new file with mode: 0644]

index 78eb834..95eb2a7 100644 (file)
@@ -1,5 +1,8 @@
 2020-01-15  Jason Merrill  <jason@redhat.com>
 
+       PR c++/93257 - consteval void function.
+       * constexpr.c (verify_constant): Allow void_node.
+
        PR c++/92871 - bad code with xvalue and GNU ?: extension.
        * call.c (prevent_lifetime_extension): New.
        (build_conditional_expr_1): Use it.
index bb126a9..17b04d7 100644 (file)
@@ -2609,7 +2609,8 @@ static bool
 verify_constant (tree t, bool allow_non_constant, bool *non_constant_p,
                 bool *overflow_p)
 {
-  if (!*non_constant_p && !reduced_constant_expression_p (t))
+  if (!*non_constant_p && !reduced_constant_expression_p (t)
+      && t != void_node)
     {
       if (!allow_non_constant)
        error ("%q+E is not a constant expression", t);
diff --git a/gcc/testsuite/g++.dg/cpp2a/consteval-void1.C b/gcc/testsuite/g++.dg/cpp2a/consteval-void1.C
new file mode 100644 (file)
index 0000000..783cf4c
--- /dev/null
@@ -0,0 +1,10 @@
+// PR c++/93257
+// { dg-do compile { target c++2a } }
+
+template <bool, typename>
+consteval void test() {}
+
+int main() {
+    test<false, int>();
+    return 0;
+}