1//==--- DiagnosticParseKinds.td - libparse diagnostics --------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9//===----------------------------------------------------------------------===//
10// Parser Diagnostics
11//===----------------------------------------------------------------------===//
12
13let Component = "Parse" in {
14
15def err_asm_qualifier_ignored : Error<
16  "expected 'volatile', 'inline', 'goto', or '('">, CatInlineAsm;
17def err_global_asm_qualifier_ignored : Error<
18  "meaningless '%0' on asm outside function">, CatInlineAsm;
19
20let CategoryName = "Inline Assembly Issue" in {
21def err_asm_empty : Error<"__asm used with no assembly instructions">;
22def err_inline_ms_asm_parsing : Error<"%0">;
23def err_msasm_unsupported_arch : Error<
24  "unsupported architecture '%0' for MS-style inline assembly">;
25def err_msasm_unable_to_create_target : Error<
26  "MS-style inline assembly is not available: %0">;
27def err_gnu_inline_asm_disabled : Error<
28  "GNU-style inline assembly is disabled">;
29def err_asm_duplicate_qual : Error<"duplicate asm qualifier '%0'">;
30}
31
32let CategoryName = "Parse Issue" in {
33
34def ext_empty_translation_unit : Extension<
35  "ISO C requires a translation unit to contain at least one declaration">,
36  InGroup<DiagGroup<"empty-translation-unit">>;
37def warn_cxx98_compat_top_level_semi : Warning<
38  "extra ';' outside of a function is incompatible with C++98">,
39  InGroup<CXX98CompatExtraSemi>, DefaultIgnore;
40def ext_extra_semi : Extension<
41  "extra ';' %select{"
42  "outside of a function|"
43  "inside a %1|"
44  "inside instance variable list|"
45  "after member function definition}0">,
46  InGroup<ExtraSemi>;
47def ext_extra_semi_cxx11 : Extension<
48  "extra ';' outside of a function is a C++11 extension">,
49  InGroup<CXX11ExtraSemi>;
50def warn_extra_semi_after_mem_fn_def : Warning<
51  "extra ';' after member function definition">,
52  InGroup<ExtraSemi>, DefaultIgnore;
53def warn_null_statement : Warning<
54  "empty expression statement has no effect; "
55  "remove unnecessary ';' to silence this warning">,
56  InGroup<ExtraSemiStmt>, DefaultIgnore;
57
58def warn_misleading_indentation : Warning<
59  "misleading indentation; statement is not part of "
60  "the previous '%select{if|else|for|while}0'">,
61  InGroup<MisleadingIndentation>, DefaultIgnore;
62def note_previous_statement : Note<
63  "previous statement is here">;
64
65def subst_compound_token_kind : TextSubstitution<
66  "%select{%1 and |}0%2 tokens "
67  "%select{introducing statement expression|terminating statement expression|"
68  "introducing attribute|terminating attribute|"
69  "forming pointer to member type}3">;
70def warn_compound_token_split_by_macro : Warning<
71  "%sub{subst_compound_token_kind}0,1,2,3 appear in different "
72  "macro expansion contexts">, InGroup<CompoundTokenSplitByMacro>;
73def note_compound_token_split_second_token_here : Note<
74  "%select{|second }0%1 token is here">;
75def warn_compound_token_split_by_whitespace : Warning<
76  "%sub{subst_compound_token_kind}0,1,2,3 are separated by whitespace">,
77  InGroup<CompoundTokenSplitBySpace>, DefaultIgnore;
78
79def ext_thread_before : Extension<"'__thread' before '%0'">;
80def ext_keyword_as_ident : ExtWarn<
81  "keyword '%0' will be made available as an identifier "
82  "%select{here|for the remainder of the translation unit}1">,
83  InGroup<KeywordCompat>;
84
85def ext_nullability : Extension<
86  "type nullability specifier %0 is a Clang extension">,
87  InGroup<DiagGroup<"nullability-extension">>;
88
89def err_empty_enum : Error<"use of empty enum">;
90
91def ext_ident_list_in_param : Extension<
92  "type-less parameter names in function declaration">;
93def ext_c99_variable_decl_in_for_loop : Extension<
94  "variable declaration in for loop is a C99-specific feature">, InGroup<C99>;
95def ext_c99_compound_literal : Extension<
96  "compound literals are a C99-specific feature">, InGroup<C99>;
97def ext_enumerator_list_comma_c : Extension<
98  "commas at the end of enumerator lists are a C99-specific "
99  "feature">, InGroup<C99>;
100def ext_enumerator_list_comma_cxx : Extension<
101  "commas at the end of enumerator lists are a C++11 extension">,
102  InGroup<CXX11>;
103def warn_cxx98_compat_enumerator_list_comma : Warning<
104  "commas at the end of enumerator lists are incompatible with C++98">,
105  InGroup<CXX98CompatPedantic>, DefaultIgnore;
106def err_enumerator_list_missing_comma : Error<
107  "missing ',' between enumerators">;
108def err_enumerator_unnamed_no_def : Error<
109  "unnamed enumeration must be a definition">;
110def ext_cxx11_enum_fixed_underlying_type : Extension<
111  "enumeration types with a fixed underlying type are a C++11 extension">,
112  InGroup<CXX11>;
113def ext_ms_c_enum_fixed_underlying_type : Extension<
114  "enumeration types with a fixed underlying type are a Microsoft extension">,
115  InGroup<MicrosoftFixedEnum>;
116def ext_clang_c_enum_fixed_underlying_type : Extension<
117  "enumeration types with a fixed underlying type are a Clang extension">,
118  InGroup<DiagGroup<"fixed-enum-extension">>;
119def warn_cxx98_compat_enum_fixed_underlying_type : Warning<
120  "enumeration types with a fixed underlying type are incompatible with C++98">,
121  InGroup<CXX98Compat>, DefaultIgnore;
122def ext_enum_base_in_type_specifier : ExtWarn<
123  "non-defining declaration of enumeration with a fixed underlying type is "
124  "only permitted as a standalone declaration"
125  "%select{|; missing list of enumerators?}0">,
126  InGroup<DiagGroup<"elaborated-enum-base">>, DefaultError;
127def ext_elaborated_enum_class : ExtWarn<
128  "reference to enumeration must use 'enum' not 'enum %select{struct|class}0'">,
129  InGroup<DiagGroup<"elaborated-enum-class">>, DefaultError;
130def err_scoped_enum_missing_identifier : Error<
131  "scoped enumeration requires a name">;
132def ext_scoped_enum : ExtWarn<
133  "scoped enumerations are a C++11 extension">, InGroup<CXX11>;
134def warn_cxx98_compat_scoped_enum : Warning<
135  "scoped enumerations are incompatible with C++98">,
136  InGroup<CXX98Compat>, DefaultIgnore;
137def err_anonymous_enum_bitfield : Error<
138  "ISO C++ only allows ':' in member enumeration declaration to introduce "
139  "a fixed underlying type, not an anonymous bit-field">;
140
141def warn_cxx98_compat_alignof : Warning<
142  "alignof expressions are incompatible with C++98">,
143  InGroup<CXX98Compat>, DefaultIgnore;
144def ext_alignof_expr : ExtWarn<
145  "%0 applied to an expression is a GNU extension">, InGroup<GNUAlignofExpression>;
146def err_lambda_after_delete : Error<
147  "'[]' after delete interpreted as 'delete[]'; add parentheses to treat this as a lambda-expression">;
148
149def warn_microsoft_dependent_exists : Warning<
150  "dependent %select{__if_not_exists|__if_exists}0 declarations are ignored">,
151  InGroup<DiagGroup<"microsoft-exists">>;
152def warn_microsoft_qualifiers_ignored : Warning<
153  "qualifiers after comma in declarator list are ignored">,
154  InGroup<IgnoredAttributes>;
155
156def err_duplicate_default_assoc : Error<
157  "duplicate default generic association">;
158def note_previous_default_assoc : Note<
159  "previous default generic association is here">;
160
161def ext_c99_feature : Extension<
162  "'%0' is a C99 extension">, InGroup<C99>;
163def ext_c11_feature : Extension<
164  "'%0' is a C11 extension">, InGroup<C11>;
165
166def err_c11_noreturn_misplaced : Error<
167  "'_Noreturn' keyword must precede function declarator">;
168
169def ext_gnu_indirect_goto : Extension<
170  "use of GNU indirect-goto extension">, InGroup<GNULabelsAsValue>;
171def ext_gnu_address_of_label : Extension<
172  "use of GNU address-of-label extension">, InGroup<GNULabelsAsValue>;
173def err_stmtexpr_file_scope : Error<
174  "statement expression not allowed at file scope">;
175def ext_gnu_statement_expr : Extension<
176  "use of GNU statement expression extension">, InGroup<GNUStatementExpression>;
177def ext_gnu_conditional_expr : Extension<
178  "use of GNU ?: conditional expression extension, omitting middle operand">, InGroup<GNUConditionalOmittedOperand>;
179def ext_gnu_empty_initializer : Extension<
180  "use of GNU empty initializer extension">, InGroup<GNUEmptyInitializer>;
181def ext_gnu_array_range : Extension<"use of GNU array range extension">,
182  InGroup<GNUDesignator>;
183def ext_gnu_missing_equal_designator : ExtWarn<
184  "use of GNU 'missing =' extension in designator">,
185  InGroup<GNUDesignator>;
186def err_expected_equal_designator : Error<"expected '=' or another designator">;
187def ext_gnu_old_style_field_designator : ExtWarn<
188  "use of GNU old-style field designator extension">,
189  InGroup<GNUDesignator>;
190def ext_gnu_case_range : Extension<"use of GNU case range extension">,
191  InGroup<GNUCaseRange>;
192
193// Generic errors.
194def err_expected_expression : Error<"expected expression">;
195def err_expected_type : Error<"expected a type">;
196def err_expected_external_declaration : Error<"expected external declaration">;
197def err_extraneous_closing_brace : Error<"extraneous closing brace ('}')">;
198def err_expected_semi_declaration : Error<
199  "expected ';' at end of declaration">;
200def err_expected_semi_decl_list : Error<
201  "expected ';' at end of declaration list">;
202def ext_expected_semi_decl_list : ExtWarn<
203  "expected ';' at end of declaration list">;
204def err_expected_member_name_or_semi : Error<
205  "expected member name or ';' after declaration specifiers">;
206def err_function_declared_typedef : Error<
207  "function definition declared 'typedef'">;
208def err_at_defs_cxx : Error<"@defs is not supported in Objective-C++">;
209def err_at_in_class : Error<"unexpected '@' in member specification">;
210def err_unexpected_semi : Error<"unexpected ';' before %0">;
211def err_postfix_after_unary_requires_parens : Error<
212  "expression cannot be followed by a postfix %0 operator; add parentheses">;
213def err_unparenthesized_non_primary_expr_in_requires_clause : Error<
214  "parentheses are required around this expression in a requires clause">;
215def note_unparenthesized_non_primary_expr_in_requires_clause : Note<
216  "parentheses are required around this expression in a requires clause">;
217
218def err_expected_fn_body : Error<
219  "expected function body after function declarator">;
220def warn_attribute_on_function_definition : Warning<
221  "GCC does not allow %0 attribute in this position on a function definition">,
222  InGroup<GccCompat>;
223def warn_gcc_attribute_location : Warning<
224  "GCC does not allow an attribute in this position on a function declaration">,
225  InGroup<GccCompat>;
226def warn_gcc_variable_decl_in_for_loop : Warning<
227  "GCC does not allow variable declarations in for loop initializers before "
228  "C99">, InGroup<GccCompat>;
229def warn_attribute_no_decl : Warning<
230  "attribute %0 ignored, because it is not attached to a declaration">,
231  InGroup<IgnoredAttributes>;
232def err_ms_attributes_not_enabled : Error<
233  "'__declspec' attributes are not enabled; use '-fdeclspec' or "
234  "'-fms-extensions' to enable support for __declspec attributes">;
235def err_expected_method_body : Error<"expected method body">;
236def err_declspec_after_virtspec : Error<
237  "'%0' qualifier may not appear after the virtual specifier '%1'">;
238def err_invalid_token_after_toplevel_declarator : Error<
239  "expected ';' after top level declarator">;
240def err_invalid_token_after_declarator_suggest_equal : Error<
241  "invalid %0 at end of declaration; did you mean '='?">;
242def err_expected_statement : Error<"expected statement">;
243def err_expected_lparen_after : Error<"expected '(' after '%0'">;
244def err_expected_rparen_after : Error<"expected ')' after '%0'">;
245def err_expected_punc : Error<"expected ')' or ',' after '%0'">;
246def err_expected_less_after : Error<"expected '<' after '%0'">;
247def err_expected_lbrace_in_compound_literal : Error<
248  "expected '{' in compound literal">;
249def err_expected_while : Error<"expected 'while' in do/while loop">;
250
251def err_expected_semi_after_stmt : Error<"expected ';' after %0 statement">;
252def err_expected_semi_after_expr : Error<"expected ';' after expression">;
253def err_extraneous_token_before_semi : Error<"extraneous '%0' before ';'">;
254
255def err_expected_semi_after_method_proto : Error<
256  "expected ';' after method prototype">;
257def err_expected_semi_after_namespace_name : Error<
258  "expected ';' after namespace name">;
259def err_unexpected_namespace_attributes_alias : Error<
260  "attributes cannot be specified on namespace alias">;
261def err_unexpected_nested_namespace_attribute : Error<
262  "attributes cannot be specified on a nested namespace definition">;
263def err_inline_namespace_alias : Error<"namespace alias cannot be inline">;
264def err_namespace_nonnamespace_scope : Error<
265  "namespaces can only be defined in global or namespace scope">;
266def ext_nested_namespace_definition : ExtWarn<
267  "nested namespace definition is a C++17 extension; "
268  "define each namespace separately">, InGroup<CXX17>;
269def warn_cxx14_compat_nested_namespace_definition : Warning<
270  "nested namespace definition is incompatible with C++ standards before C++17">,
271  InGroup<CXXPre17Compat>, DefaultIgnore;
272def ext_inline_nested_namespace_definition : ExtWarn<
273  "inline nested namespace definition is a C++20 extension">, InGroup<CXX20>;
274def warn_cxx17_compat_inline_nested_namespace_definition : Warning<
275  "inline nested namespace definition is incompatible with C++ standards before"
276  " C++20">, InGroup<CXXPre20Compat>, DefaultIgnore;
277def err_inline_nested_namespace_definition : Error<
278  "nested namespace definition cannot be 'inline'">;
279def err_expected_semi_after_attribute_list : Error<
280  "expected ';' after attribute list">;
281def err_expected_semi_after_static_assert : Error<
282  "expected ';' after static_assert">;
283def err_expected_semi_for : Error<"expected ';' in 'for' statement specifier">;
284def err_single_decl_assign_in_for_range : Error<
285  "range-based 'for' statement uses ':', not '='">;
286def warn_missing_selector_name : Warning<
287  "%0 used as the name of the previous parameter rather than as part "
288  "of the selector">,
289  InGroup<DiagGroup<"missing-selector-name">>;
290def note_missing_selector_name : Note<
291  "introduce a parameter name to make %0 part of the selector">;
292def note_force_empty_selector_name : Note<
293  "or insert whitespace before ':' to use %0 as parameter name "
294  "and have an empty entry in the selector">;
295def err_label_end_of_compound_statement : Error<
296  "label at end of compound statement: expected statement">;
297def err_address_of_label_outside_fn : Error<
298  "use of address-of-label extension outside of a function body">;
299def err_asm_operand_wide_string_literal : Error<
300  "cannot use %select{unicode|wide|an empty}0 string literal in 'asm'">;
301def err_expected_selector_for_method : Error<
302  "expected selector for Objective-C method">;
303def err_expected_property_name : Error<"expected property name">;
304
305def err_unexpected_at : Error<"unexpected '@' in program">;
306def err_atimport : Error<
307"use of '@import' when modules are disabled">;
308
309def warn_atimport_in_framework_header : Warning<
310  "use of '@import' in framework header is discouraged, "
311  "including this header requires -fmodules">,
312  InGroup<FrameworkHdrAtImport>;
313
314def err_invalid_reference_qualifier_application : Error<
315  "'%0' qualifier may not be applied to a reference">;
316def err_illegal_decl_reference_to_reference : Error<
317  "%0 declared as a reference to a reference">;
318def ext_rvalue_reference : ExtWarn<
319  "rvalue references are a C++11 extension">, InGroup<CXX11>;
320def warn_cxx98_compat_rvalue_reference : Warning<
321  "rvalue references are incompatible with C++98">,
322  InGroup<CXX98Compat>, DefaultIgnore;
323def ext_ref_qualifier : ExtWarn<
324  "reference qualifiers on functions are a C++11 extension">, InGroup<CXX11>;
325def warn_cxx98_compat_ref_qualifier : Warning<
326  "reference qualifiers on functions are incompatible with C++98">,
327  InGroup<CXX98Compat>, DefaultIgnore;
328def ext_inline_namespace : ExtWarn<
329  "inline namespaces are a C++11 feature">, InGroup<CXX11InlineNamespace>;
330def warn_cxx98_compat_inline_namespace : Warning<
331  "inline namespaces are incompatible with C++98">,
332  InGroup<CXX98Compat>, DefaultIgnore;
333def ext_generalized_initializer_lists : ExtWarn<
334  "generalized initializer lists are a C++11 extension">,
335  InGroup<CXX11>;
336def warn_cxx98_compat_generalized_initializer_lists : Warning<
337  "generalized initializer lists are incompatible with C++98">,
338  InGroup<CXX98Compat>, DefaultIgnore;
339def err_init_list_bin_op : Error<"initializer list cannot be used on the "
340  "%select{left|right}0 hand side of operator '%1'">;
341def warn_cxx98_compat_trailing_return_type : Warning<
342  "trailing return types are incompatible with C++98">,
343  InGroup<CXX98Compat>, DefaultIgnore;
344def err_requires_clause_must_appear_after_trailing_return : Error<
345  "trailing return type must appear before trailing requires clause">;
346def err_requires_clause_on_declarator_not_declaring_a_function : Error<
347  "trailing requires clause can only be used when declaring a function">;
348def err_requires_clause_inside_parens : Error<
349  "trailing requires clause should be placed outside parentheses">;
350def ext_auto_storage_class : ExtWarn<
351  "'auto' storage class specifier is not permitted in C++11, and will not "
352  "be supported in future releases">, InGroup<DiagGroup<"auto-storage-class">>;
353def ext_decltype_auto_type_specifier : ExtWarn<
354  "'decltype(auto)' type specifier is a C++14 extension">, InGroup<CXX14>;
355def warn_cxx11_compat_decltype_auto_type_specifier : Warning<
356  "'decltype(auto)' type specifier is incompatible with C++ standards before "
357  "C++14">, InGroup<CXXPre14Compat>, DefaultIgnore;
358def ext_auto_type : Extension<
359  "'__auto_type' is a GNU extension">,
360  InGroup<GNUAutoType>;
361def ext_for_range : ExtWarn<
362  "range-based for loop is a C++11 extension">, InGroup<CXX11>;
363def warn_cxx98_compat_for_range : Warning<
364  "range-based for loop is incompatible with C++98">,
365  InGroup<CXX98Compat>, DefaultIgnore;
366def err_for_range_identifier : Error<
367  "range-based for loop requires type for loop variable">;
368def err_for_range_expected_decl : Error<
369  "for range declaration must declare a variable">;
370def err_argument_required_after_attribute : Error<
371  "argument required after attribute">;
372def err_missing_param : Error<"expected parameter declarator">;
373def err_function_scope_depth_exceeded : Error<
374  "function scope depth exceeded maximum of %0">, DefaultFatal;
375def err_missing_comma_before_ellipsis : Error<
376  "C requires a comma prior to the ellipsis in a variadic function type">;
377def err_unexpected_typedef_ident : Error<
378  "unexpected type name %0: expected identifier">;
379def warn_cxx98_compat_decltype : Warning<
380  "'decltype' type specifier is incompatible with C++98">,
381  InGroup<CXX98Compat>, DefaultIgnore;
382def err_unexpected_scope_on_base_decltype : Error<
383  "unexpected namespace scope prior to decltype">;
384def err_expected_class_name : Error<"expected class name">;
385def err_expected_class_name_not_template :
386  Error<"'typename' is redundant; base classes are implicitly types">;
387def err_unspecified_vla_size_with_static : Error<
388  "'static' may not be used with an unspecified variable length array size">;
389def err_unspecified_size_with_static : Error<
390  "'static' may not be used without an array size">;
391def err_expected_parentheses_around_typename : Error<
392  "expected parentheses around type name in %0 expression">;
393
394def err_expected_case_before_expression: Error<
395  "expected 'case' keyword before expression">;
396
397def ext_warn_gnu_final : ExtWarn<
398  "__final is a GNU extension, consider using C++11 final">,
399  InGroup<GccCompat>;
400
401// Declarations.
402def err_typename_requires_specqual : Error<
403  "type name requires a specifier or qualifier">;
404def err_typename_invalid_storageclass : Error<
405  "type name does not allow storage class to be specified">;
406def err_typename_invalid_functionspec : Error<
407  "type name does not allow function specifier to be specified">;
408def err_typename_invalid_constexpr : Error<
409  "type name does not allow %sub{select_constexpr_spec_kind}0 specifier "
410  "to be specified">;
411def err_typename_identifiers_only : Error<
412  "typename is allowed for identifiers only">;
413
414def err_friend_invalid_in_context : Error<
415  "'friend' used outside of class">;
416def err_templated_using_directive_declaration : Error<
417  "cannot template a using %select{directive|declaration}0">;
418def err_unexpected_colon_in_nested_name_spec : Error<
419  "unexpected ':' in nested name specifier; did you mean '::'?">;
420def err_unexpected_token_in_nested_name_spec : Error<
421  "'%0' cannot be a part of nested name specifier; did you mean ':'?">;
422def err_bool_redeclaration : Error<
423  "redeclaration of C++ built-in type 'bool'">;
424def warn_cxx98_compat_static_assert : Warning<
425  "static_assert declarations are incompatible with C++98">,
426  InGroup<CXX98Compat>, DefaultIgnore;
427def ext_ms_static_assert : ExtWarn<
428  "use of 'static_assert' without inclusion of <assert.h> is a Microsoft "
429  "extension">, InGroup<MicrosoftStaticAssert>;
430def ext_cxx_static_assert_no_message : ExtWarn<
431  "'static_assert' with no message is a C++17 extension">, InGroup<CXX17>;
432def ext_c_static_assert_no_message : ExtWarn<
433  "'_Static_assert' with no message is a C2x extension">, InGroup<C2x>;
434def warn_cxx14_compat_static_assert_no_message : Warning<
435  "'static_assert' with no message is incompatible with C++ standards before "
436  "C++17">,
437  DefaultIgnore, InGroup<CXXPre17Compat>;
438def warn_c17_compat_static_assert_no_message : Warning<
439  "'_Static_assert' with no message is incompatible with C standards before "
440  "C2x">,
441  DefaultIgnore, InGroup<CPre2xCompat>;
442def err_function_definition_not_allowed : Error<
443  "function definition is not allowed here">;
444def err_expected_end_of_enumerator : Error<
445  "expected '= constant-expression' or end of enumerator definition">;
446def err_expected_coloncolon_after_super : Error<
447  "expected '::' after '__super'">;
448
449def ext_decomp_decl_empty : ExtWarn<
450  "ISO C++17 does not allow a decomposition group to be empty">,
451  InGroup<DiagGroup<"empty-decomposition">>;
452
453/// Objective-C parser diagnostics
454def err_expected_minus_or_plus : Error<
455  "method type specifier must start with '-' or '+'">;
456def err_objc_missing_end : Error<"missing '@end'">;
457def note_objc_container_start : Note<
458  "%select{class|protocol|category|class extension|implementation"
459  "|category implementation}0 started here">;
460def warn_objc_protocol_qualifier_missing_id : Warning<
461  "protocol has no object type specified; defaults to qualified 'id'">;
462def err_objc_unknown_at : Error<"expected an Objective-C directive after '@'">;
463def err_illegal_super_cast : Error<
464  "cannot cast 'super' (it isn't an expression)">;
465def err_nsnumber_nonliteral_unary : Error<
466  "@%0 must be followed by a number to form an NSNumber object">;
467def warn_cstyle_param : Warning<
468  "use of C-style parameters in Objective-C method declarations"
469  " is deprecated">, InGroup<DeprecatedDeclarations>;
470
471let CategoryName = "ARC Parse Issue" in {
472def err_arc_bridge_retain : Error<
473  "unknown cast annotation __bridge_retain; did you mean __bridge_retained?">;
474// To be default mapped to an error later.
475def warn_arc_bridge_cast_nonarc : Warning<
476  "'%0' casts have no effect when not using ARC">,
477  InGroup<DiagGroup<"arc-bridge-casts-disallowed-in-nonarc">>;
478}
479
480def err_objc_illegal_visibility_spec : Error<
481  "illegal visibility specification">;
482def err_objc_illegal_interface_qual : Error<"illegal interface qualifier">;
483def err_objc_expected_equal_for_getter : Error<
484  "expected '=' for Objective-C getter">;
485def err_objc_expected_equal_for_setter : Error<
486  "expected '=' for Objective-C setter">;
487def err_objc_expected_selector_for_getter_setter : Error<
488  "expected selector for Objective-C %select{setter|getter}0">;
489def err_objc_property_requires_field_name : Error<
490  "property requires fields to be named">;
491def err_objc_property_bitfield : Error<"property name cannot be a bit-field">;
492def err_objc_expected_property_attr : Error<"unknown property attribute %0">;
493def err_objc_unexpected_attr : Error<
494  "prefix attribute must be followed by an interface, protocol, or implementation">;
495def err_objc_postfix_attribute : Error <
496  "postfix attributes are not allowed on Objective-C directives">;
497def err_objc_postfix_attribute_hint : Error <
498  "postfix attributes are not allowed on Objective-C directives, place"
499  " them in front of '%select{@interface|@protocol}0'">;
500def err_objc_directive_only_in_protocol : Error<
501  "directive may only be specified in protocols only">;
502def err_missing_catch_finally : Error<
503  "@try statement without a @catch and @finally clause">;
504def err_objc_concat_string : Error<"unexpected token after Objective-C string">;
505def err_expected_objc_container : Error<
506  "'@end' must appear in an Objective-C context">;
507def err_unexpected_protocol_qualifier : Error<
508  "@implementation declaration cannot be protocol qualified">;
509def err_objc_unexpected_atend : Error<
510  "'@end' appears where closing brace '}' is expected">;
511def err_synthesized_property_name : Error<
512  "expected a property name in @synthesize">;
513def warn_semicolon_before_method_body : Warning<
514  "semicolon before method body is ignored">,
515  InGroup<SemiBeforeMethodBody>, DefaultIgnore;
516def note_extra_comma_message_arg : Note<
517  "comma separating Objective-C messaging arguments">;
518
519def err_expected_field_designator : Error<
520  "expected a field designator, such as '.field = 4'">;
521
522def err_declaration_does_not_declare_param : Error<
523  "declaration does not declare a parameter">;
524def err_no_matching_param : Error<"parameter named %0 is missing">;
525
526/// Objective-C++ parser diagnostics
527def err_expected_token_instead_of_objcxx_keyword : Error<
528  "expected %0; %1 is a keyword in Objective-C++">;
529def err_expected_member_name_or_semi_objcxx_keyword : Error<
530  "expected member name or ';' after declaration specifiers; "
531  "%0 is a keyword in Objective-C++">;
532
533/// C++ parser diagnostics
534def err_invalid_operator_on_type : Error<
535  "cannot use %select{dot|arrow}0 operator on a type">;
536def err_expected_unqualified_id : Error<
537  "expected %select{identifier|unqualified-id}0">;
538def err_brackets_go_after_unqualified_id : Error<
539  "brackets are not allowed here; to declare an array, "
540  "place the brackets after the %select{identifier|name}0">;
541def err_unexpected_unqualified_id : Error<"type-id cannot have a name">;
542def err_func_def_no_params : Error<
543  "function definition does not declare parameters">;
544def err_expected_lparen_after_type : Error<
545  "expected '(' for function-style cast or type construction">;
546def err_expected_init_in_condition : Error<
547  "variable declaration in condition must have an initializer">;
548def err_expected_init_in_condition_lparen : Error<
549  "variable declaration in condition cannot have a parenthesized initializer">;
550def err_extraneous_rparen_in_condition : Error<
551  "extraneous ')' after condition, expected a statement">;
552def warn_dangling_else : Warning<
553  "add explicit braces to avoid dangling else">,
554  InGroup<DanglingElse>;
555def err_expected_member_or_base_name : Error<
556  "expected class member or base class name">;
557def err_expected_lbrace_after_base_specifiers : Error<
558  "expected '{' after base class list">;
559def err_missing_end_of_definition : Error<
560  "missing '}' at end of definition of %q0">;
561def note_missing_end_of_definition_before : Note<
562  "still within definition of %q0 here">;
563def ext_ellipsis_exception_spec : Extension<
564  "exception specification of '...' is a Microsoft extension">,
565  InGroup<MicrosoftExceptionSpec>;
566def err_dynamic_and_noexcept_specification : Error<
567  "cannot have both throw() and noexcept() clause on the same function">;
568def err_except_spec_unparsed : Error<
569  "unexpected end of exception specification">;
570def ext_dynamic_exception_spec : ExtWarn<
571  "ISO C++17 does not allow dynamic exception specifications">,
572  InGroup<DynamicExceptionSpec>, DefaultError;
573def warn_exception_spec_deprecated : Warning<
574  "dynamic exception specifications are deprecated">,
575  InGroup<DeprecatedDynamicExceptionSpec>, DefaultIgnore;
576def note_exception_spec_deprecated : Note<"use '%0' instead">;
577def warn_cxx98_compat_noexcept_decl : Warning<
578  "noexcept specifications are incompatible with C++98">,
579  InGroup<CXX98Compat>, DefaultIgnore;
580def err_expected_catch : Error<"expected catch">;
581def err_using_namespace_in_class : Error<
582  "'using namespace' is not allowed in classes">;
583def warn_cxx17_compat_using_enum_declaration : Warning<
584  "using enum declaration is incompatible with C++ standards before C++20">,
585  InGroup<CXXPre20Compat>, DefaultIgnore;
586def ext_using_enum_declaration : ExtWarn<
587  "using enum declaration is a C++20 extension">,
588  InGroup<CXX20>;
589def err_constructor_bad_name : Error<
590  "missing return type for function %0; did you mean the constructor name %1?">;
591def err_destructor_tilde_identifier : Error<
592  "expected a class name after '~' to name a destructor">;
593def err_destructor_tilde_scope : Error<
594  "'~' in destructor name should be after nested name specifier">;
595def err_destructor_template_id : Error<
596  "destructor name %0 does not refer to a template">;
597def err_default_arg_unparsed : Error<
598  "unexpected end of default argument expression">;
599def err_bracket_depth_exceeded : Error<
600  "bracket nesting level exceeded maximum of %0">, DefaultFatal;
601def note_bracket_depth : Note<
602  "use -fbracket-depth=N to increase maximum nesting level">;
603def err_misplaced_ellipsis_in_declaration : Error<
604  "'...' must %select{immediately precede declared identifier|"
605  "be innermost component of anonymous pack declaration}0">;
606def warn_misplaced_ellipsis_vararg : Warning<
607  "'...' in this location creates a C-style varargs function"
608  "%select{, not a function parameter pack|}0">,
609  InGroup<DiagGroup<"ambiguous-ellipsis">>;
610def note_misplaced_ellipsis_vararg_existing_ellipsis : Note<
611  "preceding '...' declares a function parameter pack">;
612def note_misplaced_ellipsis_vararg_add_ellipsis : Note<
613  "place '...' %select{immediately before declared identifier|here}0 "
614  "to declare a function parameter pack">;
615def note_misplaced_ellipsis_vararg_add_comma : Note<
616  "insert ',' before '...' to silence this warning">;
617def ext_abstract_pack_declarator_parens : ExtWarn<
618  "ISO C++11 requires a parenthesized pack declaration to have a name">,
619  InGroup<DiagGroup<"anonymous-pack-parens">>;
620def err_function_is_not_record : Error<
621  "unexpected %0 in function call; perhaps remove the %0?">;
622def err_super_in_using_declaration : Error<
623  "'__super' cannot be used with a using declaration">;
624def ext_constexpr_if : ExtWarn<
625  "constexpr if is a C++17 extension">, InGroup<CXX17>;
626def warn_cxx14_compat_constexpr_if : Warning<
627  "constexpr if is incompatible with C++ standards before C++17">,
628  DefaultIgnore, InGroup<CXXPre17Compat>;
629def ext_init_statement : ExtWarn<
630  "'%select{if|switch}0' initialization statements are a C++17 extension">,
631  InGroup<CXX17>;
632def warn_cxx14_compat_init_statement : Warning<
633  "%select{if|switch}0 initialization statements are incompatible with "
634  "C++ standards before C++17">, DefaultIgnore, InGroup<CXXPre17Compat>;
635def ext_for_range_init_stmt : ExtWarn<
636  "range-based for loop initialization statements are a C++20 extension">,
637  InGroup<CXX20>;
638def warn_cxx17_compat_for_range_init_stmt : Warning<
639  "range-based for loop initialization statements are incompatible with "
640  "C++ standards before C++20">, DefaultIgnore, InGroup<CXXPre20Compat>;
641def warn_empty_init_statement : Warning<
642  "empty initialization statement of '%select{if|switch|range-based for}0' "
643  "has no effect">, InGroup<EmptyInitStatement>, DefaultIgnore;
644def err_keyword_as_parameter : Error <
645  "invalid parameter name: '%0' is a keyword">;
646
647// C++ derived classes
648def err_dup_virtual : Error<"duplicate 'virtual' in base specifier">;
649
650// C++ operator overloading
651def err_literal_operator_string_prefix : Error<
652  "string literal after 'operator' cannot have an encoding prefix">;
653def err_literal_operator_string_not_empty : Error<
654  "string literal after 'operator' must be '\"\"'">;
655def warn_cxx98_compat_literal_operator : Warning<
656  "literal operators are incompatible with C++98">,
657  InGroup<CXX98Compat>, DefaultIgnore;
658
659// Classes.
660def err_anon_type_definition : Error<
661  "declaration of anonymous %0 must be a definition">;
662def err_default_delete_in_multiple_declaration : Error<
663  "'= %select{default|delete}0' is a function definition and must occur in a "
664  "standalone declaration">;
665
666def warn_cxx98_compat_noexcept_expr : Warning<
667  "noexcept expressions are incompatible with C++98">,
668  InGroup<CXX98Compat>, DefaultIgnore;
669def warn_cxx98_compat_nullptr : Warning<
670  "'nullptr' is incompatible with C++98">, InGroup<CXX98Compat>, DefaultIgnore;
671
672def warn_wrong_clang_attr_namespace : Warning<
673  "'__clang__' is a predefined macro name, not an attribute scope specifier; "
674  "did you mean '_Clang' instead?">, InGroup<IgnoredAttributes>;
675def ext_ns_enum_attribute : Extension<
676  "attributes on %select{a namespace|an enumerator}0 declaration are "
677  "a C++17 extension">, InGroup<CXX17>;
678def warn_cxx14_compat_ns_enum_attribute : Warning<
679  "attributes on %select{a namespace|an enumerator}0 declaration are "
680  "incompatible with C++ standards before C++17">,
681  InGroup<CXXPre17CompatPedantic>, DefaultIgnore;
682def warn_cxx98_compat_alignas : Warning<"'alignas' is incompatible with C++98">,
683  InGroup<CXX98Compat>, DefaultIgnore;
684def warn_cxx98_compat_attribute : Warning<
685  "C++11 attribute syntax is incompatible with C++98">,
686  InGroup<CXX98Compat>, DefaultIgnore;
687def err_cxx11_attribute_forbids_arguments : Error<
688  "attribute %0 cannot have an argument list">;
689def err_attribute_requires_arguments : Error<
690  "parentheses must be omitted if %0 attribute's argument list is empty">;
691def err_cxx11_attribute_forbids_ellipsis : Error<
692  "attribute %0 cannot be used as an attribute pack">;
693def warn_cxx14_compat_using_attribute_ns : Warning<
694  "default scope specifier for attributes is incompatible with C++ standards "
695  "before C++17">, InGroup<CXXPre17Compat>, DefaultIgnore;
696def ext_using_attribute_ns : ExtWarn<
697  "default scope specifier for attributes is a C++17 extension">,
698  InGroup<CXX17>;
699def err_using_attribute_ns_conflict : Error<
700  "attribute with scope specifier cannot follow default scope specifier">;
701def err_attributes_not_allowed : Error<"an attribute list cannot appear here">;
702def ext_cxx11_attr_placement : ExtWarn<
703  "ISO C++ does not allow an attribute list to appear here">,
704  InGroup<DiagGroup<"cxx-attribute-extension">>;
705def err_attributes_misplaced : Error<"misplaced attributes; expected attributes here">;
706def err_l_square_l_square_not_attribute : Error<
707  "C++11 only allows consecutive left square brackets when "
708  "introducing an attribute">;
709def err_ms_declspec_type : Error<
710  "__declspec attributes must be an identifier or string literal">;
711def err_ms_property_no_getter_or_putter : Error<
712  "property does not specify a getter or a putter">;
713def err_ms_property_unknown_accessor : Error<
714  "expected 'get' or 'put' in property declaration">;
715def err_ms_property_has_set_accessor : Error<
716  "putter for property must be specified as 'put', not 'set'">;
717def err_ms_property_missing_accessor_kind : Error<
718  "missing 'get=' or 'put='">;
719def err_ms_property_expected_equal : Error<
720  "expected '=' after '%0'">;
721def err_ms_property_duplicate_accessor : Error<
722  "property declaration specifies '%0' accessor twice">;
723def err_ms_property_expected_accessor_name : Error<
724  "expected name of accessor method">;
725def err_ms_property_expected_comma_or_rparen : Error<
726  "expected ',' or ')' at end of property accessor list">;
727def err_ms_property_initializer : Error<
728  "property declaration cannot have a default member initializer">;
729
730def warn_cxx20_compat_explicit_bool : Warning<
731  "this expression will be parsed as explicit(bool) in C++20">,
732  InGroup<CXX20Compat>, DefaultIgnore;
733def warn_cxx17_compat_explicit_bool : Warning<
734  "explicit(bool) is incompatible with C++ standards before C++20">,
735  InGroup<CXXPre20Compat>, DefaultIgnore;
736def ext_explicit_bool : ExtWarn<"explicit(bool) is a C++20 extension">,
737  InGroup<CXX20>;
738
739/// C++ Templates
740def err_expected_template : Error<"expected template">;
741def err_unknown_template_name : Error<
742  "unknown template name %0">;
743def err_expected_comma_greater : Error<
744  "expected ',' or '>' in template-parameter-list">;
745def err_class_on_template_template_param : Error<
746  "template template parameter requires 'class' after the parameter list">;
747def ext_template_template_param_typename : ExtWarn<
748  "template template parameter using 'typename' is a C++17 extension">,
749  InGroup<CXX17>;
750def warn_cxx14_compat_template_template_param_typename : Warning<
751  "template template parameter using 'typename' is "
752  "incompatible with C++ standards before C++17">,
753  InGroup<CXXPre17Compat>, DefaultIgnore;
754def err_template_spec_syntax_non_template : Error<
755  "identifier followed by '<' indicates a class template specialization but "
756  "%0 %select{does not refer to a template|refers to a function template|"
757  "<unused>|refers to a variable template|<unused>|refers to a concept}1">;
758def err_id_after_template_in_nested_name_spec : Error<
759  "expected template name after 'template' keyword in nested name specifier">;
760def err_unexpected_template_in_unqualified_id : Error<
761  "'template' keyword not permitted here">;
762def err_unexpected_template_in_destructor_name : Error<
763  "'template' keyword not permitted in destructor name">;
764def err_unexpected_template_after_using : Error<
765  "'template' keyword not permitted after 'using' keyword">;
766def err_two_right_angle_brackets_need_space : Error<
767  "a space is required between consecutive right angle brackets (use '> >')">;
768def err_right_angle_bracket_equal_needs_space : Error<
769  "a space is required between a right angle bracket and an equals sign "
770  "(use '> =')">;
771def warn_cxx11_right_shift_in_template_arg : Warning<
772  "use of right-shift operator ('>>') in template argument will require "
773  "parentheses in C++11">, InGroup<CXX11Compat>;
774def warn_cxx98_compat_two_right_angle_brackets : Warning<
775  "consecutive right angle brackets are incompatible with C++98 (use '> >')">,
776  InGroup<CXX98Compat>, DefaultIgnore;
777def err_templated_invalid_declaration : Error<
778  "a static_assert declaration cannot be a template">;
779def err_multiple_template_declarators : Error<
780  "%select{|a template declaration|an explicit template specialization|"
781  "an explicit template instantiation}0 can "
782  "only %select{|declare|declare|instantiate}0 a single entity">;
783def err_explicit_instantiation_with_definition : Error<
784  "explicit template instantiation cannot have a definition; if this "
785  "definition is meant to be an explicit specialization, add '<>' after the "
786  "'template' keyword">;
787def err_template_defn_explicit_instantiation : Error<
788  "%select{function|class|variable}0 cannot be defined in an explicit instantiation; if this "
789  "declaration is meant to be a %select{function|class|variable}0 definition, remove the 'template' keyword">;
790def err_friend_explicit_instantiation : Error<
791  "friend cannot be declared in an explicit instantiation; if this "
792  "declaration is meant to be a friend declaration, remove the 'template' keyword">;
793def err_explicit_instantiation_enum : Error<
794  "enumerations cannot be explicitly instantiated">;
795def err_expected_template_parameter : Error<"expected template parameter">;
796def err_empty_requires_expr : Error<
797  "a requires expression must contain at least one requirement">;
798def err_requires_expr_parameter_list_ellipsis : Error<
799  "varargs not allowed in requires expression">;
800def err_expected_semi_requirement : Error<
801  "expected ';' at end of requirement">;
802def err_requires_expr_missing_arrow : Error<
803  "expected '->' before expression type requirement">;
804def err_requires_expr_expected_type_constraint : Error<
805  "expected concept name with optional arguments">;
806def err_requires_expr_simple_requirement_noexcept : Error<
807  "'noexcept' can only be used in a compound requirement (with '{' '}' around "
808  "the expression)">;
809def warn_requires_expr_in_simple_requirement : Warning<
810  "this requires expression will only be checked for syntactic validity; did "
811  "you intend to place it in a nested requirement? (add another 'requires' "
812  "before the expression)">, InGroup<DiagGroup<"requires-expression">>;
813
814def err_missing_dependent_template_keyword : Error<
815  "use 'template' keyword to treat '%0' as a dependent template name">;
816def warn_missing_dependent_template_keyword : ExtWarn<
817  "use 'template' keyword to treat '%0' as a dependent template name">;
818
819def ext_extern_template : Extension<
820  "extern templates are a C++11 extension">, InGroup<CXX11>;
821def warn_cxx98_compat_extern_template : Warning<
822  "extern templates are incompatible with C++98">,
823  InGroup<CXX98CompatPedantic>, DefaultIgnore;
824def warn_static_inline_explicit_inst_ignored : Warning<
825  "ignoring '%select{static|inline}0' keyword on explicit template "
826  "instantiation">, InGroup<DiagGroup<"static-inline-explicit-instantiation">>;
827
828// Constructor template diagnostics.
829def err_out_of_line_constructor_template_id : Error<
830  "out-of-line constructor for %0 cannot have template arguments">;
831
832def err_expected_qualified_after_typename : Error<
833  "expected a qualified name after 'typename'">;
834def warn_expected_qualified_after_typename : ExtWarn<
835  "expected a qualified name after 'typename'">;
836
837def err_typename_refers_to_non_type_template : Error<
838  "typename specifier refers to a non-type template">;
839def err_expected_type_name_after_typename : Error<
840  "expected an identifier or template-id after '::'">;
841def err_explicit_spec_non_template : Error<
842  "explicit %select{specialization|instantiation}0 of "
843  "%select{non-|undeclared }3template %1 %2">;
844
845def err_default_template_template_parameter_not_template : Error<
846  "default template argument for a template template parameter must be a class "
847  "template">;
848
849def ext_fold_expression : ExtWarn<
850  "pack fold expression is a C++17 extension">,
851  InGroup<CXX17>;
852def warn_cxx14_compat_fold_expression : Warning<
853  "pack fold expression is incompatible with C++ standards before C++17">,
854  InGroup<CXXPre17Compat>, DefaultIgnore;
855def err_expected_fold_operator : Error<
856  "expected a foldable binary operator in fold expression">;
857def err_fold_operator_mismatch : Error<
858  "operators in fold expression must be the same">;
859
860def err_ctor_init_missing_comma : Error<
861  "missing ',' between base or member initializers">;
862
863// C++ declarations
864def err_friend_decl_defines_type : Error<
865  "cannot define a type in a friend declaration">;
866def err_missing_whitespace_digraph : Error<
867  "found '<::' after a "
868  "%select{template name|addrspace_cast|const_cast|dynamic_cast|reinterpret_cast|static_cast}0"
869  " which forms the digraph '<:' (aka '[') and a ':', did you mean '< ::'?">;
870
871def ext_defaulted_deleted_function : ExtWarn<
872  "%select{defaulted|deleted}0 function definitions are a C++11 extension">,
873  InGroup<CXX11>;
874def warn_cxx98_compat_defaulted_deleted_function : Warning<
875  "%select{defaulted|deleted}0 function definitions are incompatible with C++98">,
876  InGroup<CXX98Compat>, DefaultIgnore;
877
878// C++11 default member initialization
879def ext_nonstatic_member_init : ExtWarn<
880  "default member initializer for non-static data member is a C++11 "
881  "extension">, InGroup<CXX11>;
882def warn_cxx98_compat_nonstatic_member_init : Warning<
883  "default member initializer for non-static data members is incompatible with "
884  "C++98">, InGroup<CXX98Compat>, DefaultIgnore;
885def ext_bitfield_member_init: ExtWarn<
886  "default member initializer for bit-field is a C++20 extension">,
887  InGroup<CXX20>;
888def warn_cxx17_compat_bitfield_member_init: Warning<
889  "default member initializer for bit-field is incompatible with "
890  "C++ standards before C++20">, InGroup<CXXPre20Compat>, DefaultIgnore;
891def err_anon_bitfield_member_init : Error<
892  "anonymous bit-field cannot have a default member initializer">;
893def err_incomplete_array_member_init: Error<
894  "array bound cannot be deduced from a default member initializer">;
895
896// C++11 alias-declaration
897def ext_alias_declaration : ExtWarn<
898  "alias declarations are a C++11 extension">, InGroup<CXX11>;
899def warn_cxx98_compat_alias_declaration : Warning<
900  "alias declarations are incompatible with C++98">,
901  InGroup<CXX98Compat>, DefaultIgnore;
902def err_alias_declaration_not_identifier : Error<
903  "name defined in alias declaration must be an identifier">;
904def err_alias_declaration_specialization : Error<
905  "%select{partial specialization|explicit specialization|explicit instantiation}0 of alias templates is not permitted">;
906def err_alias_declaration_pack_expansion : Error<
907  "alias declaration cannot be a pack expansion">;
908
909// C++17 using-declaration pack expansions
910def ext_multi_using_declaration : ExtWarn<
911  "use of multiple declarators in a single using declaration is "
912  "a C++17 extension">, InGroup<CXX17>;
913def warn_cxx17_compat_multi_using_declaration : Warning<
914  "use of multiple declarators in a single using declaration is "
915  "incompatible with C++ standards before C++17">,
916  InGroup<CXXPre17Compat>, DefaultIgnore;
917def ext_using_declaration_pack : ExtWarn<
918  "pack expansion of using declaration is a C++17 extension">, InGroup<CXX17>;
919def warn_cxx17_compat_using_declaration_pack : Warning<
920  "pack expansion using declaration is incompatible with C++ standards "
921  "before C++17">, InGroup<CXXPre17Compat>, DefaultIgnore;
922
923// C++11 override control
924def ext_override_control_keyword : ExtWarn<
925  "'%0' keyword is a C++11 extension">, InGroup<CXX11>;
926def warn_cxx98_compat_override_control_keyword : Warning<
927  "'%0' keyword is incompatible with C++98">,
928  InGroup<CXX98Compat>, DefaultIgnore;
929def err_override_control_interface : Error<
930  "'%0' keyword not permitted with interface types">;
931def ext_ms_sealed_keyword : ExtWarn<
932  "'sealed' keyword is a Microsoft extension">,
933  InGroup<MicrosoftSealed>;
934def ext_ms_abstract_keyword : ExtWarn<
935  "'abstract' keyword is a Microsoft extension">,
936  InGroup<MicrosoftAbstract>;
937
938def err_access_specifier_interface : Error<
939  "interface types cannot specify '%select{private|protected}0' access">;
940
941def err_duplicate_class_virt_specifier : Error<
942  "class already marked '%0'">;
943
944def err_duplicate_virt_specifier : Error<
945  "class member already marked '%0'">;
946
947def err_expected_parameter_pack : Error<
948  "expected the name of a parameter pack">;
949def err_paren_sizeof_parameter_pack : Error<
950  "missing parentheses around the size of parameter pack %0">;
951def err_sizeof_parameter_pack : Error<
952  "expected parenthesized parameter pack name in 'sizeof...' expression">;
953
954// C++11 lambda expressions
955def err_expected_comma_or_rsquare : Error<
956  "expected ',' or ']' in lambda capture list">;
957def err_this_captured_by_reference : Error<
958  "'this' cannot be captured by reference">;
959def err_expected_capture : Error<
960  "expected variable name or 'this' in lambda capture list">;
961def err_expected_lambda_body : Error<"expected body of lambda expression">;
962def warn_cxx98_compat_lambda : Warning<
963  "lambda expressions are incompatible with C++98">,
964  InGroup<CXX98Compat>, DefaultIgnore;
965def err_lambda_decl_specifier_repeated : Error<
966  "%select{'mutable'|'constexpr'|'consteval'}0 cannot appear multiple times in a lambda declarator">;
967def err_lambda_capture_misplaced_ellipsis : Error<
968  "ellipsis in pack %select{|init-}0capture must appear %select{after|before}0 "
969  "the name of the capture">;
970def err_lambda_capture_multiple_ellipses : Error<
971  "multiple ellipses in pack capture">;
972def err_capture_default_first : Error<
973  "capture default must be first">;
974def ext_decl_attrs_on_lambda : ExtWarn<
975  "an attribute specifier sequence in this position is a C++2b extension">,
976  InGroup<CXX2b>;
977def ext_lambda_missing_parens : ExtWarn<
978  "lambda without a parameter clause is a C++2b extension">,
979  InGroup<CXX2b>;
980def warn_cxx20_compat_decl_attrs_on_lambda : Warning<
981  "an attribute specifier sequence in this position is incompatible with C++ "
982  "standards before C++2b">, InGroup<CXXPre2bCompat>, DefaultIgnore;
983
984// C++17 lambda expressions
985def err_expected_star_this_capture : Error<
986  "expected 'this' following '*' in lambda capture list">;
987
988// C++17 constexpr lambda expressions
989def warn_cxx14_compat_constexpr_on_lambda : Warning<
990  "constexpr on lambda expressions is incompatible with C++ standards before C++17">,
991  InGroup<CXXPre17Compat>, DefaultIgnore;
992def ext_constexpr_on_lambda_cxx17 : ExtWarn<
993  "'constexpr' on lambda expressions is a C++17 extension">, InGroup<CXX17>;
994
995// C++20 template lambdas
996def ext_lambda_template_parameter_list: ExtWarn<
997  "explicit template parameter list for lambdas is a C++20 extension">,
998  InGroup<CXX20>;
999def warn_cxx17_compat_lambda_template_parameter_list: Warning<
1000  "explicit template parameter list for lambdas is incompatible with "
1001  "C++ standards before C++20">, InGroup<CXXPre20Compat>, DefaultIgnore;
1002def err_lambda_template_parameter_list_empty : Error<
1003  "lambda template parameter list cannot be empty">;
1004
1005// Availability attribute
1006def err_expected_version : Error<
1007  "expected a version of the form 'major[.minor[.subminor]]'">;
1008def warn_expected_consistent_version_separator : Warning<
1009  "use same version number separators '_' or '.'; as in "
1010  "'major[.minor[.subminor]]'">, InGroup<Availability>;
1011def err_zero_version : Error<
1012  "version number must have non-zero major, minor, or sub-minor version">;
1013def err_availability_expected_platform : Error<
1014  "expected a platform name, e.g., 'macos'">;
1015
1016// objc_bridge_related attribute
1017def err_objcbridge_related_expected_related_class : Error<
1018  "expected a related ObjectiveC class name, e.g., 'NSColor'">;
1019def err_objcbridge_related_selector_name : Error<
1020  "expected a class method selector with single argument, e.g., 'colorWithCGColor:'">;
1021
1022def err_availability_expected_change : Error<
1023  "expected 'introduced', 'deprecated', or 'obsoleted'">;
1024def err_availability_unknown_change : Error<
1025  "%0 is not an availability stage; use 'introduced', 'deprecated', or "
1026  "'obsoleted'">;
1027def err_availability_redundant : Error<
1028  "redundant %0 availability change; only the last specified change will "
1029  "be used">;
1030def warn_availability_and_unavailable : Warning<
1031  "'unavailable' availability overrides all other availability information">,
1032  InGroup<Availability>;
1033
1034// @available(...)
1035def err_avail_query_expected_platform_name : Error<
1036  "expected a platform name here">;
1037
1038def err_avail_query_unrecognized_platform_name : Error<
1039  "unrecognized platform name %0">;
1040def err_availability_query_wildcard_required: Error<
1041  "must handle potential future platforms with '*'">;
1042def err_availability_query_repeated_platform: Error<
1043  "version for '%0' already specified">;
1044def err_availability_query_repeated_star : Error<
1045  "'*' query has already been specified">;
1046
1047// External source symbol attribute
1048def err_external_source_symbol_expected_keyword : Error<
1049  "expected 'language', 'defined_in', or 'generated_declaration'">;
1050def err_external_source_symbol_duplicate_clause : Error<
1051  "duplicate %0 clause in an 'external_source_symbol' attribute">;
1052
1053// Type safety attributes
1054def err_type_safety_unknown_flag : Error<
1055  "invalid comparison flag %0; use 'layout_compatible' or 'must_be_null'">;
1056
1057// Type traits
1058def err_type_trait_arity : Error<
1059  "type trait requires %0%select{| or more}1 argument%select{|s}2; have "
1060  "%3 argument%s3">;
1061
1062// Language specific pragmas
1063// - Generic warnings
1064def warn_pragma_expected_lparen : Warning<
1065  "missing '(' after '#pragma %0' - ignoring">, InGroup<IgnoredPragmas>;
1066def warn_pragma_expected_rparen : Warning<
1067  "missing ')' after '#pragma %0' - ignoring">, InGroup<IgnoredPragmas>;
1068def warn_pragma_expected_identifier : Warning<
1069  "expected identifier in '#pragma %0' - ignored">, InGroup<IgnoredPragmas>;
1070def warn_pragma_expected_string : Warning<
1071  "expected string literal in '#pragma %0' - ignoring">, InGroup<IgnoredPragmas>;
1072def warn_pragma_missing_argument : Warning<
1073  "missing argument to '#pragma %0'%select{|; expected %2}1">, InGroup<IgnoredPragmas>;
1074def warn_pragma_invalid_argument : Warning<
1075  "unexpected argument '%0' to '#pragma %1'%select{|; expected %3}2">, InGroup<IgnoredPragmas>;
1076
1077def err_pragma_misplaced_in_decl : Error<"this pragma cannot appear in %0 declaration">;
1078
1079// '#pragma clang section' related errors
1080def err_pragma_expected_clang_section_name : Error<
1081  "expected one of [bss|data|rodata|text|relro] section kind in '#pragma %0'">;
1082def err_pragma_clang_section_expected_equal : Error<
1083  "expected '=' following '#pragma clang section %select{invalid|bss|data|rodata|text|relro}0'">;
1084def warn_pragma_expected_section_name : Warning<
1085  "expected a string literal for the section name in '#pragma %0' - ignored">,
1086  InGroup<IgnoredPragmas>;
1087
1088def warn_pragma_expected_section_push_pop_or_name : Warning<
1089  "expected push, pop or a string literal for the section name in '#pragma %0' - ignored">,
1090  InGroup<IgnoredPragmas>;
1091def warn_pragma_expected_section_label_or_name : Warning<
1092  "expected a stack label or a string literal for the section name in '#pragma %0' - ignored">,
1093  InGroup<IgnoredPragmas>;
1094def warn_pragma_expected_init_seg : Warning<
1095  "expected 'compiler', 'lib', 'user', or a string literal for the section name in '#pragma %0' - ignored">,
1096  InGroup<IgnoredPragmas>;
1097
1098def err_pragma_expected_integer : Error<"expected an integer argument in '#pragma %0'">;
1099def warn_pragma_expected_integer : Warning<
1100  "expected integer between %0 and %1 inclusive in '#pragma %2' - ignored">,
1101  InGroup<IgnoredPragmas>;
1102def warn_pragma_ms_struct : Warning<
1103  "incorrect use of '#pragma ms_struct on|off' - ignored">,
1104  InGroup<IgnoredPragmas>;
1105def warn_pragma_extra_tokens_at_eol : Warning<
1106  "extra tokens at end of '#pragma %0' - ignored">,
1107  InGroup<IgnoredPragmas>;
1108def warn_pragma_expected_comma : Warning<
1109  "expected ',' in '#pragma %0'">, InGroup<IgnoredPragmas>;
1110def warn_pragma_expected_punc : Warning<
1111  "expected ')' or ',' in '#pragma %0'">, InGroup<IgnoredPragmas>;
1112def warn_pragma_expected_non_wide_string : Warning<
1113  "expected non-wide string literal in '#pragma %0'">, InGroup<IgnoredPragmas>;
1114// - Generic errors
1115def err_pragma_missing_argument : Error<
1116  "missing argument to '#pragma %0'%select{|; expected %2}1">;
1117// - #pragma options
1118def warn_pragma_options_expected_align : Warning<
1119  "expected 'align' following '#pragma options' - ignored">,
1120  InGroup<IgnoredPragmas>;
1121def warn_pragma_align_expected_equal : Warning<
1122  "expected '=' following '#pragma %select{align|options align}0' - ignored">,
1123  InGroup<IgnoredPragmas>;
1124def warn_pragma_align_invalid_option : Warning<
1125  "invalid alignment option in '#pragma %select{align|options align}0' - ignored">,
1126  InGroup<IgnoredPragmas>;
1127// - #pragma pack
1128def warn_pragma_unsupported_action : Warning<
1129  "known but unsupported action '%1' for '#pragma %0' - ignored">,
1130  InGroup<IgnoredPragmas>;
1131def warn_pragma_invalid_specific_action : Warning<
1132  "unknown action '%1' for '#pragma %0' - ignored">,
1133  InGroup<IgnoredPragmas>;
1134def warn_pragma_expected_action_or_r_paren : Warning<
1135  "expected action or ')' in '#pragma %0' - ignored">,
1136  InGroup<IgnoredPragmas>;
1137def warn_pragma_invalid_action : Warning<
1138  "unknown action for '#pragma %0' - ignored">,
1139  InGroup<IgnoredPragmas>;
1140def warn_pragma_pack_malformed : Warning<
1141  "expected integer or identifier in '#pragma pack' - ignored">,
1142  InGroup<IgnoredPragmas>;
1143// - #pragma intrinsic
1144def warn_pragma_intrinsic_builtin : Warning<
1145  "%0 is not a recognized builtin%select{|; consider including <intrin.h> to access non-builtin intrinsics}1">,
1146  InGroup<IgnoredPragmaIntrinsic>;
1147// - #pragma optimize
1148def warn_pragma_optimize : Warning<
1149  "'#pragma optimize' is not supported">,
1150  InGroup<IgnoredPragmaOptimize>;
1151// - #pragma unused
1152def warn_pragma_unused_expected_var : Warning<
1153  "expected '#pragma unused' argument to be a variable name">,
1154  InGroup<IgnoredPragmas>;
1155// - #pragma init_seg
1156def warn_pragma_init_seg_unsupported_target : Warning<
1157  "'#pragma init_seg' is only supported when targeting a "
1158  "Microsoft environment">,
1159  InGroup<IgnoredPragmas>;
1160// - #pragma restricted to file scope or start of compound statement
1161def err_pragma_file_or_compound_scope : Error<
1162  "'#pragma %0' can only appear at file scope or at the start of a "
1163  "compound statement">;
1164// - #pragma stdc unknown
1165def ext_stdc_pragma_ignored : ExtWarn<"unknown pragma in STDC namespace">,
1166   InGroup<UnknownPragmas>;
1167// The C standard 7.6.1p2 says "The [FENV_ACCESS] pragma shall occur either
1168// outside external declarations or preceding all explicit declarations and
1169// statements inside a compound statement.
1170def err_pragma_stdc_fenv_access_scope : Error<
1171  "'#pragma STDC FENV_ACCESS' can only appear at file scope or at the start of"
1172  " a compound statement">;
1173def warn_stdc_fenv_round_not_supported :
1174   Warning<"pragma STDC FENV_ROUND is not supported">,
1175   InGroup<UnknownPragmas>;
1176def warn_stdc_unknown_rounding_mode : Warning<
1177  "invalid or unsupported rounding mode in '#pragma STDC FENV_ROUND' - ignored">,
1178  InGroup<IgnoredPragmas>;
1179def warn_pragma_fp_ignored : Warning<
1180  "'#pragma %0' is not supported on this target - ignored">,
1181  InGroup<IgnoredPragmas>;
1182// - #pragma comment
1183def err_pragma_comment_malformed : Error<
1184  "pragma comment requires parenthesized identifier and optional string">;
1185def err_pragma_comment_unknown_kind : Error<"unknown kind of pragma comment">;
1186// PS4 recognizes only #pragma comment(lib)
1187def warn_pragma_comment_ignored : Warning<"'#pragma comment %0' ignored">,
1188  InGroup<IgnoredPragmas>;
1189// - #pragma detect_mismatch
1190def err_pragma_detect_mismatch_malformed : Error<
1191  "pragma detect_mismatch is malformed; it requires two comma-separated "
1192  "string literals">;
1193// - #pragma float_control
1194def err_pragma_float_control_malformed : Error<
1195  "pragma float_control is malformed; use 'float_control({push|pop})' or "
1196  "'float_control({precise|except}, {on|off} [,push])'">;
1197// - #pragma pointers_to_members
1198def err_pragma_pointers_to_members_unknown_kind : Error<
1199  "unexpected %0, expected to see one of %select{|'best_case', 'full_generality', }1"
1200  "'single_inheritance', 'multiple_inheritance', or 'virtual_inheritance'">;
1201// - #pragma clang optimize on/off
1202def err_pragma_optimize_invalid_argument : Error<
1203  "unexpected argument '%0' to '#pragma clang optimize'; "
1204  "expected 'on' or 'off'">;
1205def err_pragma_optimize_extra_argument : Error<
1206  "unexpected extra argument '%0' to '#pragma clang optimize'">;
1207// - #pragma clang attribute
1208def err_pragma_attribute_expected_push_pop_paren : Error<
1209  "expected 'push', 'pop', or '(' after '#pragma clang attribute'">;
1210def err_pragma_attribute_invalid_argument : Error<
1211  "unexpected argument '%0' to '#pragma clang attribute'; "
1212  "expected 'push' or 'pop'">;
1213def err_pragma_attribute_expected_attribute : Error<
1214  "expected an attribute after '('">;
1215def err_pragma_attribute_expected_attribute_name : Error<
1216  "expected identifier that represents an attribute name">;
1217def err_pragma_attribute_extra_tokens_after_attribute : Error<
1218  "extra tokens after attribute in a '#pragma clang attribute push'">;
1219def err_pragma_attribute_unsupported_attribute : Error<
1220  "attribute %0 is not supported by '#pragma clang attribute'">;
1221def err_pragma_attribute_multiple_attributes : Error<
1222  "more than one attribute specified in '#pragma clang attribute push'">;
1223def err_pragma_attribute_expected_attribute_syntax : Error<
1224  "expected an attribute that is specified using the GNU, C++11 or '__declspec'"
1225  " syntax">;
1226def note_pragma_attribute_use_attribute_kw : Note<"use the GNU '__attribute__' "
1227  "syntax">;
1228def err_pragma_attribute_invalid_subject_set_specifier : Error<
1229  "expected attribute subject set specifier 'apply_to'">;
1230def err_pragma_attribute_expected_subject_identifier : Error<
1231  "expected an identifier that corresponds to an attribute subject rule">;
1232def err_pragma_attribute_unknown_subject_rule : Error<
1233  "unknown attribute subject rule '%0'">;
1234def err_pragma_attribute_expected_subject_sub_identifier : Error<
1235  "expected an identifier that corresponds to an attribute subject matcher "
1236  "sub-rule; '%0' matcher %select{does not support sub-rules|supports the "
1237  "following sub-rules: %2|}1">;
1238def err_pragma_attribute_unknown_subject_sub_rule : Error<
1239  "%select{invalid use of|unknown}2 attribute subject matcher sub-rule '%0'; "
1240  "'%1' matcher %select{does not support sub-rules|supports the following "
1241  "sub-rules: %3}2">;
1242def err_pragma_attribute_duplicate_subject : Error<
1243  "duplicate attribute subject matcher '%0'">;
1244def err_pragma_attribute_expected_period : Error<
1245  "expected '.' after pragma attribute namespace %0">;
1246def err_pragma_attribute_namespace_on_attribute : Error<
1247  "namespace can only apply to 'push' or 'pop' directives">;
1248def note_pragma_attribute_namespace_on_attribute : Note<
1249  "omit the namespace to add attributes to the most-recently"
1250  " pushed attribute group">;
1251
1252// OpenCL EXTENSION pragma (OpenCL 1.1 [9.1])
1253def warn_pragma_expected_colon : Warning<
1254  "missing ':' after %0 - ignoring">, InGroup<IgnoredPragmas>;
1255def warn_pragma_expected_predicate : Warning<
1256  "expected %select{'enable', 'disable', 'begin' or 'end'|'disable'}0 - ignoring">, InGroup<IgnoredPragmas>;
1257def warn_pragma_unknown_extension : Warning<
1258  "unknown OpenCL extension %0 - ignoring">, InGroup<IgnoredPragmas>;
1259def warn_pragma_unsupported_extension : Warning<
1260  "unsupported OpenCL extension %0 - ignoring">, InGroup<IgnoredPragmas>;
1261def warn_pragma_extension_is_core : Warning<
1262  "OpenCL extension %0 is core feature or supported optional core feature - ignoring">,
1263  InGroup<OpenCLCoreFeaturesDiagGroup>, DefaultIgnore;
1264
1265// OpenCL errors.
1266def err_opencl_taking_function_address_parser : Error<
1267  "taking address of function is not allowed">;
1268def err_opencl_logical_exclusive_or : Error<
1269  "^^ is a reserved operator in OpenCL">;
1270
1271// C++ for OpenCL.
1272def err_openclcxx_virtual_function : Error<
1273  "virtual functions are not supported in C++ for OpenCL">;
1274
1275// OpenMP support.
1276def warn_pragma_omp_ignored : Warning<
1277  "unexpected '#pragma omp ...' in program">, InGroup<SourceUsesOpenMP>, DefaultIgnore;
1278def warn_omp_extra_tokens_at_eol : Warning<
1279  "extra tokens at the end of '#pragma omp %0' are ignored">,
1280  InGroup<ExtraTokens>;
1281def warn_pragma_expected_colon_r_paren : Warning<
1282  "missing ':' or ')' after %0 - ignoring">, InGroup<IgnoredPragmas>;
1283def err_omp_unknown_directive : Error<
1284  "expected an OpenMP directive">;
1285def err_omp_unexpected_directive : Error<
1286  "unexpected OpenMP directive %select{|'#pragma omp %1'}0">;
1287def err_omp_expected_punc : Error<
1288  "expected ',' or ')' in '%0' %select{clause|directive}1">;
1289def err_omp_unexpected_clause : Error<
1290  "unexpected OpenMP clause '%0' in directive '#pragma omp %1'">;
1291def err_omp_immediate_directive : Error<
1292  "'#pragma omp %0' %select{|with '%2' clause }1cannot be an immediate substatement">;
1293def err_omp_expected_identifier_for_critical : Error<
1294  "expected identifier specifying the name of the 'omp critical' directive">;
1295def err_omp_expected_reduction_identifier : Error<
1296  "expected identifier or one of the following operators: '+', '-', '*', '&', '|', '^', '&&', or '||'">;
1297def err_omp_expected_equal_in_iterator : Error<
1298  "expected '=' in iterator specifier">;
1299def err_omp_expected_punc_after_iterator : Error<
1300  "expected ',' or ')' after iterator specifier">;
1301def err_omp_decl_in_declare_simd_variant : Error<
1302  "function declaration is expected after 'declare %select{simd|variant}0' directive">;
1303def err_omp_unknown_map_type : Error<
1304  "incorrect map type, expected one of 'to', 'from', 'tofrom', 'alloc', 'release', or 'delete'">;
1305def err_omp_unknown_map_type_modifier : Error<
1306  "incorrect map type modifier, expected 'always', 'close', "
1307  "%select{or 'mapper'|'mapper', or 'present'}0">;
1308def err_omp_map_type_missing : Error<
1309  "missing map type">;
1310def err_omp_map_type_modifier_missing : Error<
1311  "missing map type modifier">;
1312def err_omp_declare_simd_inbranch_notinbranch : Error<
1313  "unexpected '%0' clause, '%1' is specified already">;
1314def err_expected_end_declare_target_or_variant : Error<
1315  "expected '#pragma omp end declare %select{target|variant}0'">;
1316def err_expected_begin_declare_variant
1317    : Error<"'#pragma omp end declare variant' with no matching '#pragma omp "
1318            "begin declare variant'">;
1319def err_expected_begin_assumes
1320    : Error<"'#pragma omp end assumes' with no matching '#pragma omp begin assumes'">;
1321def warn_omp_unknown_assumption_clause_missing_id
1322    : Warning<"valid %0 clauses start with %1; %select{token|tokens}2 will be ignored">,
1323      InGroup<OpenMPClauses>;
1324def warn_omp_unknown_assumption_clause_without_args
1325    : Warning<"%0 clause should not be followed by arguments; tokens will be ignored">,
1326      InGroup<OpenMPClauses>;
1327def note_omp_assumption_clause_continue_here
1328    : Note<"the ignored tokens spans until here">;
1329def err_omp_declare_target_unexpected_clause: Error<
1330  "unexpected '%0' clause, only %select{'device_type'|'to' or 'link'|'to', 'link' or 'device_type'}1 clauses expected">;
1331def err_omp_begin_declare_target_unexpected_implicit_to_clause: Error<
1332  "unexpected '(', only 'to', 'link' or 'device_type' clauses expected for 'begin declare target' directive">;
1333def err_omp_declare_target_unexpected_clause_after_implicit_to: Error<
1334  "unexpected clause after an implicit 'to' clause">;
1335def err_omp_declare_target_missing_to_or_link_clause: Error<
1336  "expected at least one 'to' or 'link' clause">;
1337def err_omp_declare_target_multiple : Error<
1338  "%0 appears multiple times in clauses on the same declare target directive">;
1339def err_omp_expected_clause: Error<
1340  "expected at least one clause on '#pragma omp %0' directive">;
1341def err_omp_mapper_illegal_identifier : Error<
1342  "illegal OpenMP user-defined mapper identifier">;
1343def err_omp_mapper_expected_declarator : Error<
1344  "expected declarator on 'omp declare mapper' directive">;
1345def err_omp_declare_variant_wrong_clause : Error<
1346  "expected '%0' clause on 'omp declare variant' directive">;
1347def err_omp_declare_variant_duplicate_nested_trait : Error<
1348  "nested OpenMP context selector contains duplicated trait '%0'"
1349  " in selector '%1' and set '%2' with different score">;
1350def err_omp_declare_variant_nested_user_condition : Error<
1351  "nested user conditions in OpenMP context selector not supported (yet)">;
1352def warn_omp_declare_variant_string_literal_or_identifier
1353    : Warning<"expected identifier or string literal describing a context "
1354              "%select{set|selector|property}0; "
1355              "%select{set|selector|property}0 skipped">,
1356      InGroup<OpenMPClauses>;
1357def warn_unknown_begin_declare_variant_isa_trait
1358    : Warning<"isa trait '%0' is not known to the current target; verify the "
1359              "spelling or consider restricting the context selector with the "
1360              "'arch' selector further">,
1361      InGroup<SourceUsesOpenMP>;
1362def note_omp_declare_variant_ctx_options
1363    : Note<"context %select{set|selector|property}0 options are: %1">;
1364def warn_omp_declare_variant_expected
1365    : Warning<"expected '%0' after the %1; '%0' assumed">,
1366      InGroup<OpenMPClauses>;
1367def warn_omp_declare_variant_ctx_not_a_property
1368    : Warning<"'%0' is not a valid context property for the context selector "
1369              "'%1' and the context set '%2'; property ignored">,
1370      InGroup<OpenMPClauses>;
1371def note_omp_declare_variant_ctx_is_a
1372    : Note<"'%0' is a context %select{set|selector|property}1 not a context "
1373           "%select{set|selector|property}2">;
1374def note_omp_declare_variant_ctx_try : Note<"try 'match(%0={%1%2})'">;
1375def warn_omp_declare_variant_ctx_not_a_selector
1376    : Warning<"'%0' is not a valid context selector for the context set '%1'; "
1377              "selector ignored">,
1378      InGroup<OpenMPClauses>;
1379def warn_omp_declare_variant_ctx_not_a_set
1380    : Warning<"'%0' is not a valid context set in a `declare variant`; set "
1381              "ignored">,
1382      InGroup<OpenMPClauses>;
1383def warn_omp_declare_variant_ctx_mutiple_use
1384    : Warning<"the context %select{set|selector|property}0 '%1' was used "
1385              "already in the same 'omp declare variant' directive; "
1386              "%select{set|selector|property}0 ignored">,
1387      InGroup<OpenMPClauses>;
1388def note_omp_declare_variant_ctx_used_here
1389    : Note<"the previous context %select{set|selector|property}0 '%1' used "
1390           "here">;
1391def note_omp_declare_variant_ctx_continue_here
1392    : Note<"the ignored %select{set|selector|property}0 spans until here">;
1393def warn_omp_ctx_incompatible_selector_for_set
1394    : Warning<"the context selector '%0' is not valid for the context set "
1395              "'%1'; selector ignored">,
1396      InGroup<OpenMPClauses>;
1397def note_omp_ctx_compatible_set_for_selector
1398    : Note<"the context selector '%0' can be nested in the context set '%1'; "
1399           "try 'match(%1={%0%select{|(property)}2})'">;
1400def warn_omp_ctx_selector_without_properties
1401    : Warning<"the context selector '%0' in context set '%1' requires a "
1402              "context property defined in parentheses; selector ignored">,
1403      InGroup<OpenMPClauses>;
1404def warn_omp_ctx_incompatible_property_for_selector
1405    : Warning<"the context property '%0' is not valid for the context selector "
1406              "'%1' and the context set '%2'; property ignored">,
1407      InGroup<OpenMPClauses>;
1408def note_omp_ctx_compatible_set_and_selector_for_property
1409    : Note<"the context property '%0' can be nested in the context selector "
1410           "'%1' which is nested in the context set '%2'; try "
1411           "'match(%2={%1(%0)})'">;
1412def warn_omp_ctx_incompatible_score_for_property
1413    : Warning<"the context selector '%0' in the context set '%1' cannot have a "
1414              "score ('%2'); score ignored">,
1415      InGroup<OpenMPClauses>;
1416def warn_omp_more_one_device_type_clause
1417    : Warning<"more than one 'device_type' clause is specified">,
1418      InGroup<OpenMPClauses>;
1419def err_omp_variant_ctx_second_match_extension : Error<
1420  "only a single match extension allowed per OpenMP context selector">;
1421def err_omp_invalid_dsa: Error<
1422  "data-sharing attribute '%0' in '%1' clause requires OpenMP version %2 or above">;
1423def err_omp_expected_punc_after_interop_mod : Error<
1424  "expected ',' after interop modifier">;
1425def err_omp_expected_interop_type : Error<
1426  "expected interop type: 'target' and/or 'targetsync'">;
1427def warn_omp_more_one_interop_type
1428  : Warning<"interop type '%0' cannot be specified more than once">,
1429    InGroup<OpenMPClauses>;
1430def err_expected_sequence_or_directive : Error<
1431  "expected an OpenMP 'directive' or 'sequence' attribute argument">;
1432def ext_omp_attributes : ExtWarn<
1433  "specifying OpenMP directives with [[]] is an OpenMP 5.1 extension">,
1434  InGroup<OpenMP51Ext>;
1435def warn_omp51_compat_attributes : Warning<
1436  "specifying OpenMP directives with [[]] is incompatible with OpenMP "
1437  "standards before OpenMP 5.1">,
1438  InGroup<OpenMPPre51Compat>, DefaultIgnore;
1439
1440// Pragma loop support.
1441def err_pragma_loop_missing_argument : Error<
1442  "missing argument; expected %select{an integer value|"
1443  "'enable'%select{|, 'full'}1%select{|, 'assume_safety'}2 or 'disable'}0">;
1444def err_pragma_loop_invalid_option : Error<
1445  "%select{invalid|missing}0 option%select{ %1|}0; expected vectorize, "
1446  "vectorize_width, interleave, interleave_count, unroll, unroll_count, "
1447  "pipeline, pipeline_initiation_interval, vectorize_predicate, or distribute">;
1448def err_pragma_loop_invalid_vectorize_option : Error<
1449  "vectorize_width loop hint malformed; use vectorize_width(X, fixed) or "
1450  "vectorize_width(X, scalable) where X is an integer, or vectorize_width('fixed' or 'scalable')">;
1451def note_pragma_loop_invalid_vectorize_option : Note<
1452  "vectorize_width loop hint malformed; use vectorize_width(X, fixed) or "
1453  "vectorize_width(X, scalable) where X is an integer, or vectorize_width('fixed' or 'scalable')">;
1454
1455def err_pragma_fp_invalid_option : Error<
1456  "%select{invalid|missing}0 option%select{ %1|}0; expected 'contract', 'reassociate' or 'exceptions'">;
1457def err_pragma_fp_invalid_argument : Error<
1458  "unexpected argument '%0' to '#pragma clang fp %1'; expected "
1459  "%select{"
1460  "'fast' or 'on' or 'off'|"
1461  "'on' or 'off'|"
1462  "'ignore', 'maytrap' or 'strict'}2">;
1463
1464def err_pragma_invalid_keyword : Error<
1465  "invalid argument; expected 'enable'%select{|, 'full'}0%select{|, 'assume_safety'}1 or 'disable'">;
1466def err_pragma_pipeline_invalid_keyword : Error<
1467    "invalid argument; expected 'disable'">;
1468
1469// Pragma unroll support.
1470def warn_pragma_unroll_cuda_value_in_parens : Warning<
1471  "argument to '#pragma unroll' should not be in parentheses in CUDA C/C++">,
1472  InGroup<CudaCompat>;
1473
1474def warn_cuda_attr_lambda_position : Warning<
1475  "nvcc does not allow '__%0__' to appear after '()' in lambdas">,
1476  InGroup<CudaCompat>;
1477def warn_pragma_force_cuda_host_device_bad_arg : Warning<
1478  "incorrect use of #pragma clang force_cuda_host_device begin|end">,
1479  InGroup<IgnoredPragmas>;
1480def err_pragma_cannot_end_force_cuda_host_device : Error<
1481  "force_cuda_host_device end pragma without matching "
1482  "force_cuda_host_device begin">;
1483} // end of Parse Issue category.
1484
1485let CategoryName = "Modules Issue" in {
1486def err_unexpected_module_decl : Error<
1487  "module declaration can only appear at the top level">;
1488def err_module_expected_ident : Error<
1489  "expected a module name after '%select{module|import}0'">;
1490def err_attribute_not_module_attr : Error<
1491  "%0 attribute cannot be applied to a module">;
1492def err_attribute_not_import_attr : Error<
1493  "%0 attribute cannot be applied to a module import">;
1494def err_module_expected_semi : Error<
1495  "expected ';' after module name">;
1496def err_global_module_introducer_not_at_start : Error<
1497  "'module;' introducing a global module fragment can appear only "
1498  "at the start of the translation unit">;
1499def err_module_fragment_exported : Error<
1500  "%select{global|private}0 module fragment cannot be exported">;
1501def err_private_module_fragment_expected_semi : Error<
1502  "expected ';' after private module fragment declaration">;
1503def err_missing_before_module_end : Error<"expected %0 at end of module">;
1504def err_unsupported_module_partition : Error<
1505  "sorry, module partitions are not yet supported">;
1506
1507def err_export_empty : Error<"export declaration cannot be empty">;
1508}
1509
1510let CategoryName = "Generics Issue" in {
1511
1512def err_objc_expected_type_parameter : Error<
1513  "expected type parameter name">;
1514
1515def err_objc_parameterized_implementation : Error<
1516  "@implementation cannot have type parameters">;
1517
1518def err_objc_type_args_after_protocols : Error<
1519  "protocol qualifiers must precede type arguments">;
1520
1521def note_meant_to_use_typename : Note<
1522  "did you mean to use 'typename'?">;
1523}
1524
1525let CategoryName = "Coroutines Issue" in {
1526def err_for_co_await_not_range_for : Error<
1527  "'co_await' modifier can only be applied to range-based for loop">;
1528}
1529
1530let CategoryName = "Concepts Issue" in {
1531def err_concept_definition_not_identifier : Error<
1532  "name defined in concept definition must be an identifier">;
1533def ext_concept_legacy_bool_keyword : ExtWarn<
1534  "ISO C++20 does not permit the 'bool' keyword after 'concept'">,
1535  InGroup<DiagGroup<"concepts-ts-compat">>;
1536def err_placeholder_expected_auto_or_decltype_auto : Error<
1537  "expected 'auto' or 'decltype(auto)' after concept name">;
1538}
1539
1540def warn_max_tokens : Warning<
1541  "the number of preprocessor source tokens (%0) exceeds this token limit (%1)">,
1542  InGroup<MaxTokens>, DefaultIgnore;
1543
1544def warn_max_tokens_total : Warning<
1545  "the total number of preprocessor source tokens (%0) exceeds the token limit (%1)">,
1546  InGroup<MaxTokens>, DefaultIgnore;
1547
1548def note_max_tokens_total_override : Note<"total token limit set here">;
1549
1550} // end of Parser diagnostics
1551