On Tue, 30 Sep 2025, [email protected] wrote: > gcc/c-family/ChangeLog: > > * c-attribs.cc: Add exclusions.
This should mention the specific variables changed. > + /* Check if the name of the function has been overridden. */ > + if (DECL_ASSEMBLER_NAME_SET_P (decl) > + && IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl))[0] == '*') > + error_at (DECL_SOURCE_LOCATION (decl), > + "Cannot use function multiversioning on a renamed function"); Diagnostics should not start with a capital letter, unless one's appropriate in the middle of a sentence. -- Joseph S. Myers [email protected]
