* c-opts.c (c_common_post_options): -fconcepts-ts implies
-fconcepts.
From-SVN: r277859
+2019-11-05 Jason Merrill <jason@redhat.com>
+
+ * c-opts.c (c_common_post_options): -fconcepts-ts implies
+ -fconcepts.
+
2019-11-04 Kamlesh Kumar <kamleshbhalui@gmail.com>
* c-opts.c (c_common_post_options): Update
to know when concepts are enabled. Note that -fconcepts-ts can
be used to include additional features, although modified to
work with the standard. */
- if (cxx_dialect >= cxx2a)
+ if (cxx_dialect >= cxx2a || flag_concepts_ts)
flag_concepts = 1;
else if (flag_concepts)
/* For -std=c++17 -fconcepts, imply -fconcepts-ts. */
// { dg-do link { target c++14 } }
-// { dg-options "-fconcepts" }
+// { dg-options "-fconcepts-ts" }
void f() requires true { }