On Mon, Nov 14, 2022 at 07:00:54PM -0500, Jason Merrill wrote: > > The following patch adds parsing of attributes to concept definition, > > allows deprecated attribute to be specified (some ugliness needed > > because CONCEPT_DECL is a cp/*.def attribute and so can't be mentioned > > in c-family/ directly; used what is used for objc method decls, > > an alternative would be a langhook) > > Several of the codes in c-common.def are C++-only, you might just move it > over? > > > and checks TREE_DEPRECATED in > > build_standard_check (not sure if that is the right spot, or whether > > it shouldn't be checked also for variable and function concepts and > > how to write testcase coverage for that). > > I wouldn't bother with var/fn concepts, they're obsolete.
Ok, so like this? The previous version passed bootstrap/regtest on x86_64-linux and i686-linux, I'll of course test this one as well. Jakub