2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-04-13 13:41:12 +08:00

c++: constinit on pointer to function [PR104066]

[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.
This commit is contained in:
Marek Polacek 2022-11-17 11:59:29 -05:00
parent 3f467ea953
commit 7b3b2f5095
2 changed files with 13 additions and 1 deletions
gcc
cp
testsuite/g++.dg/cpp2a

@ -13071,7 +13071,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 "

@ -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" }