]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
c++: constinit on pointer to function [PR104066]
authorMarek Polacek <polacek@redhat.com>
Thu, 17 Nov 2022 16:59:29 +0000 (11:59 -0500)
committerMarek Polacek <polacek@redhat.com>
Fri, 18 Nov 2022 00:39:15 +0000 (19:39 -0500)
[dcl.constinit]: "The constinit specifier shall be applied only to
a declaration of a variable with static or thread storage duration."

Thus, this ought to be OK:

  constinit void (*p)() = nullptr;

but the error message I introduced when implementing constinit was
not looking at funcdecl_p, so the code above was rejected.

Fixed thus.  I'm checking constinit_p first because I think that's
far more likely to be false than funcdecl_p.

PR c++/104066

gcc/cp/ChangeLog:

* decl.cc (grokdeclarator): Check funcdecl_p before complaining
about constinit.

gcc/testsuite/ChangeLog:

* g++.dg/cpp2a/constinit18.C: New test.

(cherry picked from commit 7b3b2f50953c5143d4b14b59d322d8a793f411dd)

gcc/cp/decl.cc
gcc/testsuite/g++.dg/cpp2a/constinit18.C [new file with mode: 0644]

index cd1522f9a9f8e5e6b67bdd8e7fc7db1a57696228..ed47d262078718b1be8f6efa2e62827e5f7f6e2c 100644 (file)
@@ -12963,7 +12963,7 @@ grokdeclarator (const cp_declarator *declarator,
                          "an array", name);
                return error_mark_node;
              }
-           if (constinit_p)
+           if (constinit_p && funcdecl_p)
              {
                error_at (declspecs->locations[ds_constinit],
                          "%<constinit%> on function return type is not "
diff --git a/gcc/testsuite/g++.dg/cpp2a/constinit18.C b/gcc/testsuite/g++.dg/cpp2a/constinit18.C
new file mode 100644 (file)
index 0000000..51b4f02
--- /dev/null
@@ -0,0 +1,12 @@
+// PR c++/104066
+// { dg-do compile { target c++20 } }
+
+constinit void (*p)() = nullptr;
+constinit void (*pp)() = nullptr;
+void fn();
+constinit void (&r)() = fn;
+
+extern constinit long (* const syscall_reexported) (long, ...);
+
+constinit void bad (); // { dg-error ".constinit. on function return type is not allowed" }
+constinit void bad () { } // { dg-error ".constinit. on function return type is not allowed" }