]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
c++: -fconcepts and __cpp_concepts
authorJason Merrill <jason@redhat.com>
Fri, 23 Jun 2023 17:54:07 +0000 (13:54 -0400)
committerJason Merrill <jason@redhat.com>
Mon, 14 Aug 2023 17:33:58 +0000 (13:33 -0400)
Since -fconcepts no longer implies -fconcepts-ts, we shouldn't advertise TS
support with __cpp_concepts=201507L.  Also fix one case where -std=c++14
-fconcepts wasn't working (as found by range-v3 calendar).  Fixing other
cases is not a priority, probably better to reject that flag combination if
there are further issues.

gcc/c-family/ChangeLog:

* c-cppbuiltin.cc (c_cpp_builtins): Adjust __cpp_concepts.

gcc/cp/ChangeLog:

* parser.cc (cp_parser_simple_type_specifier): Handle -std=c++14
-fconcepts.

gcc/c-family/c-cppbuiltin.cc
gcc/cp/parser.cc

index 6bd4c1261a7610b875c1643e232435b1cc1aeab0..f2b12fd63db7f5eca1f9e86a03206de848912eb7 100644 (file)
@@ -1089,7 +1089,7 @@ c_cpp_builtins (cpp_reader *pfile)
        }
       if (flag_concepts)
         {
-         if (cxx_dialect >= cxx20)
+         if (cxx_dialect >= cxx20 || !flag_concepts_ts)
            cpp_define (pfile, "__cpp_concepts=202002L");
           else
             cpp_define (pfile, "__cpp_concepts=201507L");
index 2d27376d98827c24acaf557cf392d078ab8c0c42..7f646704d3f455c6e7371661bc6523b652fb0487 100644 (file)
@@ -20017,12 +20017,13 @@ cp_parser_simple_type_specifier (cp_parser* parser,
       /* Otherwise, look for a type-name.  */
       if (!type)
        {
-         if (cxx_dialect >= cxx17)
+         if (cxx_dialect >= cxx17 || flag_concepts)
            cp_parser_parse_tentatively (parser);
 
          type = cp_parser_type_name (parser, (qualified_p && typename_p));
 
-         if (cxx_dialect >= cxx17 && !cp_parser_parse_definitely (parser))
+         if ((cxx_dialect >= cxx17 || flag_concepts)
+             && !cp_parser_parse_definitely (parser))
            type = NULL_TREE;
        }