c++: std::is_constant_evaluated inside constraint [PR97051]
authorPatrick Palka <ppalka@redhat.com>
Sat, 19 Sep 2020 15:17:41 +0000 (11:17 -0400)
committerPatrick Palka <ppalka@redhat.com>
Sat, 19 Sep 2020 15:17:41 +0000 (11:17 -0400)
According to [expr.const]/14, the result of substitution into an atomic
constraint is manifestly constant-evaluated; this patch adjusts the call
to maybe_constant_value in satisfy_atom to that effect.

gcc/cp/ChangeLog:

PR c++/97051
* constraint.cc (satisfy_atom): Pass true as the
manifestly_const_eval argument to maybe_constant_value.

gcc/testsuite/ChangeLog:

PR c++/97051
* g++.dg/cpp2a/is-constant-evaluated11.C: New test.

gcc/cp/constraint.cc
gcc/testsuite/g++.dg/cpp2a/is-constant-evaluated11.C [new file with mode: 0644]

index 0aab3073cc1f4c5e164b7944d4aeb34f445fdac6..8137df59e37efd8c5c9c6f2e65c689aa77789911 100644 (file)
@@ -2643,7 +2643,8 @@ satisfy_atom (tree t, tree args, subst_info info)
     result = cxx_constant_value (result);
   else
     {
-      result = maybe_constant_value (result);
+      result = maybe_constant_value (result, NULL_TREE,
+                                    /*manifestly_const_eval=*/true);
       if (!TREE_CONSTANT (result))
        result = error_mark_node;
     }
diff --git a/gcc/testsuite/g++.dg/cpp2a/is-constant-evaluated11.C b/gcc/testsuite/g++.dg/cpp2a/is-constant-evaluated11.C
new file mode 100644 (file)
index 0000000..a31867f
--- /dev/null
@@ -0,0 +1,16 @@
+// PR c++/97051
+// { dg-do compile { target c++20 } }
+
+namespace std {
+  constexpr inline bool
+  is_constant_evaluated () noexcept
+  {
+    return __builtin_is_constant_evaluated ();
+  }
+}
+
+template<typename>
+  requires (std::is_constant_evaluated())
+constexpr int a = 0;
+
+constexpr int b = a<int>;