Re: [PATCH v3 05/12] OpenMP: C++ front-end support for metadirectives

2024-08-16 Thread Jakub Jelinek
On Sat, Jul 20, 2024 at 02:42:24PM -0600, Sandra Loosemore wrote: > + const char *old_name = IDENTIFIER_POINTER (name); > + char *new_name = (char *) alloca (strlen (old_name) + 32); XALLOCAVEC like for the C FE patch. > + /* FIXME: I believe it is an unimplemented feature rather > +

[PATCH v3 05/12] OpenMP: C++ front-end support for metadirectives

2024-07-20 Thread Sandra Loosemore
This patch adds C++ support for metadirectives. It uses the c-family support committed with the corresponding C front end patch to do early parse-time metadirective resolution when possible. Additional C/C++ common testcases are provided in a subsequent patch in the series. gcc/cp/ChangeLog