]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td
Merge from head
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / include / clang / Basic / DiagnosticParseKinds.td
1 //==--- DiagnosticParseKinds.td - libparse diagnostics --------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 //===----------------------------------------------------------------------===//
11 // Parser Diagnostics
12 //===----------------------------------------------------------------------===//
13
14 let Component = "Parse" in {
15
16 def w_asm_qualifier_ignored : Warning<"ignored %0 qualifier on asm">,
17                               CatInlineAsm;
18 def warn_file_asm_volatile : Warning<
19   "meaningless 'volatile' on asm outside function">, CatInlineAsm;
20
21 let CategoryName = "Inline Assembly Issue" in {
22 def err_asm_empty : Error<"__asm used with no assembly instructions">;
23 def err_inline_ms_asm_parsing : Error<"%0">;
24 def err_msasm_unsupported_arch : Error<
25   "Unsupported architecture '%0' for MS-style inline assembly">;
26 def err_msasm_unable_to_create_target : Error<
27   "MS-style inline assembly is not available: %0">;
28 def err_gnu_inline_asm_disabled : Error<
29   "GNU-style inline assembly is disabled">;
30 }
31
32 let CategoryName = "Parse Issue" in {
33
34 def ext_empty_translation_unit : Extension<
35   "ISO C requires a translation unit to contain at least one declaration">,
36   InGroup<DiagGroup<"empty-translation-unit">>;
37 def warn_cxx98_compat_top_level_semi : Warning<
38   "extra ';' outside of a function is incompatible with C++98">,
39   InGroup<CXX98CompatPedantic>, DefaultIgnore;
40 def 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>;
47 def ext_extra_semi_cxx11 : Extension<
48   "extra ';' outside of a function is a C++11 extension">,
49   InGroup<CXX11ExtraSemi>;
50 def warn_extra_semi_after_mem_fn_def : Warning<
51   "extra ';' after member function definition">,
52   InGroup<ExtraSemi>, DefaultIgnore;
53
54 def ext_duplicate_declspec : ExtWarn<"duplicate '%0' declaration specifier">,
55   InGroup<DuplicateDeclSpecifier>;
56 def warn_duplicate_declspec : Warning<"duplicate '%0' declaration specifier">,
57   InGroup<DuplicateDeclSpecifier>;
58 def ext_plain_complex : ExtWarn<
59   "plain '_Complex' requires a type specifier; assuming '_Complex double'">;
60 def ext_integer_complex : Extension<
61   "complex integer types are a GNU extension">, InGroup<GNUComplexInteger>;
62 def ext_thread_before : Extension<"'__thread' before '%0'">;
63 def ext_keyword_as_ident : ExtWarn<
64   "keyword '%0' will be made available as an identifier "
65   "%select{here|for the remainder of the translation unit}1">,
66   InGroup<KeywordCompat>;
67
68 def ext_nullability : Extension<
69   "type nullability specifier %0 is a Clang extension">,
70   InGroup<DiagGroup<"nullability-extension">>;
71
72 def error_empty_enum : Error<"use of empty enum">;
73 def err_invalid_sign_spec : Error<"'%0' cannot be signed or unsigned">;
74 def err_invalid_short_spec : Error<"'short %0' is invalid">;
75 def err_invalid_long_spec : Error<"'long %0' is invalid">;
76 def err_invalid_longlong_spec : Error<"'long long %0' is invalid">;
77 def err_invalid_complex_spec : Error<"'_Complex %0' is invalid">;
78 def err_friend_decl_spec : Error<"'%0' is invalid in friend declarations">;
79
80 def ext_ident_list_in_param : Extension<
81   "type-less parameter names in function declaration">;
82 def ext_c99_variable_decl_in_for_loop : Extension<
83   "variable declaration in for loop is a C99-specific feature">, InGroup<C99>;
84 def ext_c99_compound_literal : Extension<
85   "compound literals are a C99-specific feature">, InGroup<C99>;
86 def ext_enumerator_list_comma_c : Extension<
87   "commas at the end of enumerator lists are a C99-specific "
88   "feature">, InGroup<C99>;
89 def ext_enumerator_list_comma_cxx : Extension<
90   "commas at the end of enumerator lists are a C++11 extension">,
91   InGroup<CXX11>;
92 def warn_cxx98_compat_enumerator_list_comma : Warning<
93   "commas at the end of enumerator lists are incompatible with C++98">,
94   InGroup<CXX98CompatPedantic>, DefaultIgnore;
95 def err_enumerator_list_missing_comma : Error<
96   "missing ',' between enumerators">;
97 def err_enumerator_unnamed_no_def : Error<
98   "unnamed enumeration must be a definition">;
99 def ext_cxx11_enum_fixed_underlying_type : Extension<
100   "enumeration types with a fixed underlying type are a C++11 extension">, 
101   InGroup<CXX11>;
102 def ext_c_enum_fixed_underlying_type : Extension<
103   "enumeration types with a fixed underlying type are a Microsoft extension">,
104   InGroup<Microsoft>;
105 def warn_cxx98_compat_enum_fixed_underlying_type : Warning<
106   "enumeration types with a fixed underlying type are incompatible with C++98">,
107   InGroup<CXX98Compat>, DefaultIgnore;
108 def warn_cxx98_compat_alignof : Warning<
109   "alignof expressions are incompatible with C++98">,
110   InGroup<CXX98Compat>, DefaultIgnore;
111 def ext_alignof_expr : ExtWarn<
112   "%0 applied to an expression is a GNU extension">, InGroup<GNUAlignofExpression>;
113
114 def warn_microsoft_dependent_exists : Warning<
115   "dependent %select{__if_not_exists|__if_exists}0 declarations are ignored">, 
116   InGroup<DiagGroup<"microsoft-exists">>;
117 def warn_microsoft_qualifiers_ignored : Warning<
118   "qualifiers after comma in declarator list are ignored">,
119   InGroup<IgnoredAttributes>;
120
121 def ext_c11_generic_selection : Extension<
122   "generic selections are a C11-specific feature">, InGroup<C11>;
123 def err_duplicate_default_assoc : Error<
124   "duplicate default generic association">;
125 def note_previous_default_assoc : Note<
126   "previous default generic association is here">;
127
128 def ext_c11_alignment : Extension<
129   "%0 is a C11-specific feature">, InGroup<C11>;
130
131 def ext_c11_noreturn : Extension<
132   "_Noreturn functions are a C11-specific feature">, InGroup<C11>;
133 def err_c11_noreturn_misplaced : Error<
134   "'_Noreturn' keyword must precede function declarator">;
135
136 def ext_gnu_indirect_goto : Extension<
137   "use of GNU indirect-goto extension">, InGroup<GNULabelsAsValue>;
138 def ext_gnu_address_of_label : Extension<
139   "use of GNU address-of-label extension">, InGroup<GNULabelsAsValue>;
140 def err_stmtexpr_file_scope : Error<
141   "statement expression not allowed at file scope">;
142 def ext_gnu_statement_expr : Extension<
143   "use of GNU statement expression extension">, InGroup<GNUStatementExpression>;
144 def ext_gnu_conditional_expr : Extension<
145   "use of GNU ?: conditional expression extension, omitting middle operand">, InGroup<GNUConditionalOmittedOperand>;
146 def ext_gnu_empty_initializer : Extension<
147   "use of GNU empty initializer extension">, InGroup<GNUEmptyInitializer>;
148 def ext_gnu_array_range : Extension<"use of GNU array range extension">, 
149   InGroup<GNUDesignator>;
150 def ext_gnu_missing_equal_designator : ExtWarn<
151   "use of GNU 'missing =' extension in designator">, 
152   InGroup<GNUDesignator>;
153 def err_expected_equal_designator : Error<"expected '=' or another designator">;
154 def ext_gnu_old_style_field_designator : ExtWarn<
155   "use of GNU old-style field designator extension">, 
156   InGroup<GNUDesignator>;
157 def ext_gnu_case_range : Extension<"use of GNU case range extension">,
158   InGroup<GNUCaseRange>;
159
160 // Generic errors.
161 def err_expected_expression : Error<"expected expression">;
162 def err_expected_type : Error<"expected a type">;
163 def err_expected_external_declaration : Error<"expected external declaration">;
164 def err_extraneous_closing_brace : Error<"extraneous closing brace ('}')">;
165 def err_expected_semi_declaration : Error<
166   "expected ';' at end of declaration">;
167 def err_expected_semi_decl_list : Error<
168   "expected ';' at end of declaration list">;
169 def ext_expected_semi_decl_list : ExtWarn<
170   "expected ';' at end of declaration list">;
171 def err_expected_member_name_or_semi : Error<
172   "expected member name or ';' after declaration specifiers">;
173 def err_function_declared_typedef : Error<
174   "function definition declared 'typedef'">;
175 def err_at_defs_cxx : Error<"@defs is not supported in Objective-C++">;
176 def err_at_in_class : Error<"unexpected '@' in member specification">;
177 def err_unexpected_semi : Error<"unexpected ';' before %0">;
178
179 def err_expected_fn_body : Error<
180   "expected function body after function declarator">;
181 def warn_attribute_on_function_definition : Warning<
182   "GCC does not allow %0 attribute in this position on a function definition">, 
183   InGroup<GccCompat>;
184 def warn_gcc_attribute_location : Warning<
185   "GCC does not allow an attribute in this position on a function declaration">, 
186   InGroup<GccCompat>;
187 def warn_attribute_no_decl : Warning<
188   "attribute %0 ignored, because it is not attached to a declaration">, 
189   InGroup<IgnoredAttributes>;
190 def err_expected_method_body : Error<"expected method body">;
191 def err_declspec_after_virtspec : Error<
192   "'%0' qualifier may not appear after the virtual specifier '%1'">;
193 def err_invalid_token_after_toplevel_declarator : Error<
194   "expected ';' after top level declarator">;
195 def err_invalid_token_after_declarator_suggest_equal : Error<
196   "invalid %0 at end of declaration; did you mean '='?">;
197 def err_expected_statement : Error<"expected statement">;
198 def err_expected_lparen_after : Error<"expected '(' after '%0'">;
199 def err_expected_rparen_after : Error<"expected ')' after '%0'">;
200 def err_expected_punc : Error<"expected ')' or ',' after '%0'">;
201 def err_expected_less_after : Error<"expected '<' after '%0'">;
202 def err_expected_lbrace_in_compound_literal : Error<
203   "expected '{' in compound literal">;
204 def err_expected_while : Error<"expected 'while' in do/while loop">;
205
206 def err_expected_semi_after_stmt : Error<"expected ';' after %0 statement">;
207 def err_expected_semi_after_expr : Error<"expected ';' after expression">;
208 def err_extraneous_token_before_semi : Error<"extraneous '%0' before ';'">;
209
210 def err_expected_semi_after_method_proto : Error<
211   "expected ';' after method prototype">;
212 def err_expected_semi_after_namespace_name : Error<
213   "expected ';' after namespace name">;
214 def err_unexpected_namespace_attributes_alias : Error<
215   "attributes cannot be specified on namespace alias">;
216 def err_unexpected_nested_namespace_attribute : Error<
217   "attributes cannot be specified on a nested namespace definition">;
218 def err_inline_namespace_alias : Error<"namespace alias cannot be inline">;
219 def err_namespace_nonnamespace_scope : Error<
220   "namespaces can only be defined in global or namespace scope">;
221 def ext_nested_namespace_definition : ExtWarn<
222   "nested namespace definition is a C++1z extension; "
223   "define each namespace separately">, InGroup<CXX1z>;
224 def warn_cxx14_compat_nested_namespace_definition : Warning<
225   "nested namespace definition is incompatible with C++ standards before C++1z">,
226   InGroup<CXXPre1zCompat>, DefaultIgnore;
227 def err_inline_nested_namespace_definition : Error<
228   "nested namespace definition cannot be 'inline'">;
229 def err_expected_semi_after_attribute_list : Error<
230   "expected ';' after attribute list">;
231 def err_expected_semi_after_static_assert : Error<
232   "expected ';' after static_assert">;
233 def err_expected_semi_for : Error<"expected ';' in 'for' statement specifier">;
234 def err_single_decl_assign_in_for_range : Error<
235   "range-based 'for' statement uses ':', not '='">;
236 def warn_missing_selector_name : Warning<
237   "%0 used as the name of the previous parameter rather than as part "
238   "of the selector">,
239   InGroup<DiagGroup<"missing-selector-name">>;
240 def note_missing_selector_name : Note<
241   "introduce a parameter name to make %0 part of the selector">;
242 def note_force_empty_selector_name : Note<
243   "or insert whitespace before ':' to use %0 as parameter name "
244   "and have an empty entry in the selector">;
245 def err_label_end_of_compound_statement : Error<
246   "label at end of compound statement: expected statement">;
247 def err_address_of_label_outside_fn : Error<
248   "use of address-of-label extension outside of a function body">;
249 def err_asm_operand_wide_string_literal : Error<
250   "cannot use %select{unicode|wide}0 string literal in 'asm'">;
251 def err_expected_selector_for_method : Error<
252   "expected selector for Objective-C method">;
253 def err_expected_property_name : Error<"expected property name">;
254
255 def err_unexpected_at : Error<"unexpected '@' in program">;
256 def err_atimport : Error<
257 "use of '@import' when modules are disabled">;
258
259 def err_invalid_reference_qualifier_application : Error<
260   "'%0' qualifier may not be applied to a reference">;
261 def err_illegal_decl_reference_to_reference : Error<
262   "%0 declared as a reference to a reference">;
263 def ext_rvalue_reference : ExtWarn<
264   "rvalue references are a C++11 extension">, InGroup<CXX11>;
265 def warn_cxx98_compat_rvalue_reference : Warning<
266   "rvalue references are incompatible with C++98">,
267   InGroup<CXX98Compat>, DefaultIgnore;
268 def ext_ref_qualifier : ExtWarn<
269   "reference qualifiers on functions are a C++11 extension">, InGroup<CXX11>;
270 def warn_cxx98_compat_ref_qualifier : Warning<
271   "reference qualifiers on functions are incompatible with C++98">,
272   InGroup<CXX98Compat>, DefaultIgnore;
273 def ext_inline_namespace : ExtWarn<
274   "inline namespaces are a C++11 feature">, InGroup<CXX11>;
275 def warn_cxx98_compat_inline_namespace : Warning<
276   "inline namespaces are incompatible with C++98">,
277   InGroup<CXX98Compat>, DefaultIgnore;
278 def ext_generalized_initializer_lists : ExtWarn<
279   "generalized initializer lists are a C++11 extension">,
280   InGroup<CXX11>;
281 def warn_cxx98_compat_generalized_initializer_lists : Warning<
282   "generalized initializer lists are incompatible with C++98">,
283   InGroup<CXX98Compat>, DefaultIgnore;
284 def err_init_list_bin_op : Error<"initializer list cannot be used on the "
285   "%select{left|right}0 hand side of operator '%1'">;
286 def warn_cxx98_compat_trailing_return_type : Warning<
287   "trailing return types are incompatible with C++98">,
288   InGroup<CXX98Compat>, DefaultIgnore;
289 def ext_auto_type_specifier : ExtWarn<
290   "'auto' type specifier is a C++11 extension">, InGroup<CXX11>;
291 def warn_auto_storage_class : Warning<
292   "'auto' storage class specifier is redundant and incompatible with C++11">,
293   InGroup<CXX11Compat>, DefaultIgnore;
294 def ext_auto_storage_class : ExtWarn<
295   "'auto' storage class specifier is not permitted in C++11, and will not "
296   "be supported in future releases">, InGroup<DiagGroup<"auto-storage-class">>;
297 def ext_decltype_auto_type_specifier : ExtWarn<
298   "'decltype(auto)' type specifier is a C++14 extension">, InGroup<CXX14>;
299 def warn_cxx11_compat_decltype_auto_type_specifier : Warning<
300   "'decltype(auto)' type specifier is incompatible with C++ standards before "
301   "C++14">, InGroup<CXXPre14Compat>, DefaultIgnore;
302 def ext_for_range : ExtWarn<
303   "range-based for loop is a C++11 extension">, InGroup<CXX11>;
304 def warn_cxx98_compat_for_range : Warning<
305   "range-based for loop is incompatible with C++98">,
306   InGroup<CXX98Compat>, DefaultIgnore;
307 def err_for_range_identifier : Error<
308   "range-based for loop requires type for loop variable">;
309 def err_for_range_expected_decl : Error<
310   "for range declaration must declare a variable">;
311 def err_argument_required_after_attribute : Error<
312   "argument required after attribute">;
313 def err_missing_param : Error<"expected parameter declarator">;
314 def err_missing_comma_before_ellipsis : Error<
315   "C requires a comma prior to the ellipsis in a variadic function type">;
316 def err_unexpected_typedef_ident : Error<
317   "unexpected type name %0: expected identifier">;
318 def warn_cxx98_compat_decltype : Warning<
319   "'decltype' type specifier is incompatible with C++98">,
320   InGroup<CXX98Compat>, DefaultIgnore;
321 def err_unexpected_scope_on_base_decltype : Error<
322   "unexpected namespace scope prior to decltype">;
323 def err_expected_class_name : Error<"expected class name">;
324 def err_expected_class_name_not_template : 
325   Error<"'typename' is redundant; base classes are implicitly types">;
326 def err_unspecified_vla_size_with_static : Error<
327   "'static' may not be used with an unspecified variable length array size">;
328 def err_unspecified_size_with_static : Error<
329   "'static' may not be used without an array size">;
330 def warn_deprecated_register : Warning<
331   "'register' storage class specifier is deprecated">,
332   InGroup<DeprecatedRegister>;
333 def err_expected_parentheses_around_typename : Error<
334   "expected parentheses around type name in %0 expression">;
335
336 def err_expected_case_before_expression: Error<
337   "expected 'case' keyword before expression">;
338
339 // Declarations.
340 def err_typename_requires_specqual : Error<
341   "type name requires a specifier or qualifier">;
342 def err_typename_invalid_storageclass : Error<
343   "type name does not allow storage class to be specified">;
344 def err_typename_invalid_functionspec : Error<
345   "type name does not allow function specifier to be specified">;
346 def err_typename_invalid_constexpr : Error<
347   "type name does not allow constexpr specifier to be specified">;
348 def err_typename_identifiers_only : Error<
349   "typename is allowed for identifiers only">;
350
351 def err_invalid_decl_spec_combination : Error<
352   "cannot combine with previous '%0' declaration specifier">;
353 def err_invalid_vector_decl_spec_combination : Error<
354   "cannot combine with previous '%0' declaration specifier. "
355   "'__vector' must be first">;
356 def err_invalid_pixel_decl_spec_combination : Error<
357   "'__pixel' must be preceded by '__vector'.  "
358   "'%0' declaration specifier not allowed here">;
359 def err_invalid_vector_bool_decl_spec : Error<
360   "cannot use '%0' with '__vector bool'">;
361 def err_invalid_vector_long_decl_spec : Error<
362   "cannot use 'long' with '__vector'">;
363 def err_invalid_vector_float_decl_spec : Error<
364   "cannot use 'float' with '__vector'">;
365 def err_invalid_vector_double_decl_spec : Error <
366   "use of 'double' with '__vector' requires VSX support to be enabled "
367   "(available on POWER7 or later)">;
368 def err_invalid_vector_long_long_decl_spec : Error <
369   "use of 'long long' with '__vector bool' requires VSX support (available on "
370   "POWER7 or later) or extended Altivec support (available on POWER8 or later) " 
371   "to be enabled">;
372 def err_invalid_vector_long_double_decl_spec : Error<
373   "cannot use 'long double' with '__vector'">;
374 def warn_vector_long_decl_spec_combination : Warning<
375   "Use of 'long' with '__vector' is deprecated">, InGroup<Deprecated>;
376 def err_friend_invalid_in_context : Error<
377   "'friend' used outside of class">;
378 def err_use_of_tag_name_without_tag : Error<
379   "must use '%1' tag to refer to type %0%select{| in this scope}2">;
380 def err_templated_using_directive : Error<
381   "cannot template a using directive">;
382 def err_templated_using_declaration : Error<
383   "cannot template a using declaration">;
384 def err_unexpected_colon_in_nested_name_spec : Error<
385   "unexpected ':' in nested name specifier; did you mean '::'?">;
386 def err_unexpected_token_in_nested_name_spec : Error<
387   "'%0' cannot be a part of nested name specifier; did you mean ':'?">;
388 def err_bool_redeclaration : Error<
389   "redeclaration of C++ built-in type 'bool'">;
390 def ext_c11_static_assert : Extension<
391   "_Static_assert is a C11-specific feature">, InGroup<C11>;
392 def warn_cxx98_compat_static_assert : Warning<
393   "static_assert declarations are incompatible with C++98">,
394   InGroup<CXX98Compat>, DefaultIgnore;
395 def err_paren_after_colon_colon : Error<
396   "unexpected parenthesis after '::'">;
397 def err_function_definition_not_allowed : Error<
398   "function definition is not allowed here">;
399 def err_expected_end_of_enumerator : Error<
400   "expected '= constant-expression' or end of enumerator definition">;
401 def err_expected_coloncolon_after_super : Error<
402   "expected '::' after '__super'">;
403
404 /// Objective-C parser diagnostics
405 def err_expected_minus_or_plus : Error<
406   "method type specifier must start with '-' or '+'">;
407 def err_objc_no_attributes_on_category : Error<
408   "attributes may not be specified on a category">;
409 def err_objc_missing_end : Error<"missing '@end'">;
410 def note_objc_container_start : Note<
411   "%select{class|protocol|category|class extension|implementation"
412   "|category implementation}0 started here">;
413 def warn_objc_protocol_qualifier_missing_id : Warning<
414   "protocol has no object type specified; defaults to qualified 'id'">;
415 def err_objc_unknown_at : Error<"expected an Objective-C directive after '@'">;
416 def err_illegal_super_cast : Error<
417   "cannot cast 'super' (it isn't an expression)">;
418 def err_nsnumber_nonliteral_unary : Error<
419   "@%0 must be followed by a number to form an NSNumber object">;
420 def warn_cstyle_param : Warning<
421   "use of C-style parameters in Objective-C method declarations"
422   " is deprecated">, InGroup<DeprecatedDeclarations>;
423
424 let CategoryName = "ARC Parse Issue" in {
425 def err_arc_bridge_retain : Error<
426   "unknown cast annotation __bridge_retain; did you mean __bridge_retained?">;
427 // To be default mapped to an error later.
428 def warn_arc_bridge_cast_nonarc : Warning<
429   "'%0' casts have no effect when not using ARC">,
430   InGroup<DiagGroup<"arc-bridge-casts-disallowed-in-nonarc">>;
431 }
432   
433 def err_objc_illegal_visibility_spec : Error<
434   "illegal visibility specification">;
435 def err_objc_illegal_interface_qual : Error<"illegal interface qualifier">;
436 def err_objc_expected_equal_for_getter : Error<
437   "expected '=' for Objective-C getter">;
438 def err_objc_expected_equal_for_setter : Error<
439   "expected '=' for Objective-C setter">;
440 def err_objc_expected_selector_for_getter_setter : Error<
441   "expected selector for Objective-C %select{setter|getter}0">;
442 def err_objc_property_requires_field_name : Error<
443   "property requires fields to be named">;
444 def err_objc_property_bitfield : Error<"property name cannot be a bitfield">;
445 def err_objc_expected_property_attr : Error<"unknown property attribute %0">;
446 def err_objc_properties_require_objc2 : Error<
447   "properties are an Objective-C 2 feature">;
448 def err_objc_unexpected_attr : Error<
449   "prefix attribute must be followed by an interface or protocol">;
450 def err_objc_postfix_attribute : Error <
451   "postfix attributes are not allowed on Objective-C directives">;
452 def err_objc_postfix_attribute_hint : Error <
453   "postfix attributes are not allowed on Objective-C directives, place"
454   " them in front of '%select{@interface|@protocol}0'">;
455 def err_objc_directive_only_in_protocol : Error<
456   "directive may only be specified in protocols only">;
457 def err_missing_catch_finally : Error<
458   "@try statement without a @catch and @finally clause">;
459 def err_objc_concat_string : Error<"unexpected token after Objective-C string">;
460 def err_expected_objc_container : Error<
461   "'@end' must appear in an Objective-C context">;
462 def err_unexpected_protocol_qualifier : Error<
463   "@implementation declaration cannot be protocol qualified">;
464 def err_objc_unexpected_atend : Error<
465   "'@end' appears where closing brace '}' is expected">;
466 def error_property_ivar_decl : Error<
467   "property synthesize requires specification of an ivar">;
468 def err_synthesized_property_name : Error<
469   "expected a property name in @synthesize">;
470 def warn_semicolon_before_method_body : Warning<
471   "semicolon before method body is ignored">,
472   InGroup<DiagGroup<"semicolon-before-method-body">>, DefaultIgnore;
473 def note_extra_comma_message_arg : Note<
474   "comma separating Objective-C messaging arguments">;
475
476 def err_expected_field_designator : Error<
477   "expected a field designator, such as '.field = 4'">;
478
479 def err_declaration_does_not_declare_param : Error<
480   "declaration does not declare a parameter">;
481 def err_no_matching_param : Error<"parameter named %0 is missing">;
482
483 /// C++ parser diagnostics
484 def err_invalid_operator_on_type : Error<
485   "cannot use %select{dot|arrow}0 operator on a type">;
486 def err_expected_unqualified_id : Error<
487   "expected %select{identifier|unqualified-id}0">;
488 def err_brackets_go_after_unqualified_id : Error<
489   "brackets are not allowed here; to declare an array, "
490   "place the brackets after the %select{identifier|name}0">;
491 def err_unexpected_unqualified_id : Error<"type-id cannot have a name">;
492 def err_func_def_no_params : Error<
493   "function definition does not declare parameters">;
494 def err_expected_lparen_after_type : Error<
495   "expected '(' for function-style cast or type construction">;
496 def err_expected_init_in_condition : Error<
497   "variable declaration in condition must have an initializer">;
498 def err_expected_init_in_condition_lparen : Error<
499   "variable declaration in condition cannot have a parenthesized initializer">;
500 def err_extraneous_rparen_in_condition : Error<
501   "extraneous ')' after condition, expected a statement">;
502 def warn_dangling_else : Warning<
503   "add explicit braces to avoid dangling else">,
504   InGroup<DanglingElse>;
505 def err_expected_member_or_base_name : Error<
506   "expected class member or base class name">;
507 def err_expected_lbrace_after_base_specifiers : Error<
508   "expected '{' after base class list">;
509 def err_missing_end_of_definition : Error<
510   "missing '}' at end of definition of %q0">;
511 def note_missing_end_of_definition_before : Note<
512   "still within definition of %q0 here">;
513 def ext_ellipsis_exception_spec : Extension<
514   "exception specification of '...' is a Microsoft extension">,
515   InGroup<Microsoft>;
516 def err_dynamic_and_noexcept_specification : Error<
517   "cannot have both throw() and noexcept() clause on the same function">;
518 def err_except_spec_unparsed : Error<
519   "unexpected end of exception specification">;
520 def warn_cxx98_compat_noexcept_decl : Warning<
521   "noexcept specifications are incompatible with C++98">,
522   InGroup<CXX98Compat>, DefaultIgnore;
523 def err_expected_catch : Error<"expected catch">;
524 def err_using_namespace_in_class : Error<
525   "'using namespace' is not allowed in classes">;
526 def err_constructor_bad_name : Error<
527   "missing return type for function %0; did you mean the constructor name %1?">;
528 def err_destructor_tilde_identifier : Error<
529   "expected a class name after '~' to name a destructor">;
530 def err_destructor_tilde_scope : Error<
531   "'~' in destructor name should be after nested name specifier">;
532 def err_destructor_template_id : Error<
533   "destructor name %0 does not refer to a template">;
534 def err_default_arg_unparsed : Error<
535   "unexpected end of default argument expression">;
536 def err_bracket_depth_exceeded : Error<
537   "bracket nesting level exceeded maximum of %0">, DefaultFatal;
538 def note_bracket_depth : Note<
539   "use -fbracket-depth=N to increase maximum nesting level">;
540 def err_misplaced_ellipsis_in_declaration : Error<
541   "'...' must %select{immediately precede declared identifier|"
542   "be innermost component of anonymous pack declaration}0">;
543 def warn_misplaced_ellipsis_vararg : Warning<
544   "'...' in this location creates a C-style varargs function"
545   "%select{, not a function parameter pack|}0">,
546   InGroup<DiagGroup<"ambiguous-ellipsis">>;
547 def note_misplaced_ellipsis_vararg_existing_ellipsis : Note<
548   "preceding '...' declares a function parameter pack">;
549 def note_misplaced_ellipsis_vararg_add_ellipsis : Note<
550   "place '...' %select{immediately before declared identifier|here}0 "
551   "to declare a function parameter pack">;
552 def note_misplaced_ellipsis_vararg_add_comma : Note<
553   "insert ',' before '...' to silence this warning">;
554 def ext_abstract_pack_declarator_parens : ExtWarn<
555   "ISO C++11 requires a parenthesized pack declaration to have a name">,
556   InGroup<DiagGroup<"anonymous-pack-parens">>;
557 def err_function_is_not_record : Error<
558   "unexpected %0 in function call; perhaps remove the %0?">;
559 def err_super_in_using_declaration : Error<
560   "'__super' cannot be used with a using declaration">;
561
562 // C++ derived classes
563 def err_dup_virtual : Error<"duplicate 'virtual' in base specifier">;
564
565 // C++ operator overloading
566 def err_literal_operator_string_prefix : Error<
567   "string literal after 'operator' cannot have an encoding prefix">;
568 def err_literal_operator_string_not_empty : Error<
569   "string literal after 'operator' must be '\"\"'">;
570 def warn_cxx98_compat_literal_operator : Warning<
571   "literal operators are incompatible with C++98">,
572   InGroup<CXX98Compat>, DefaultIgnore;
573
574 // Classes.
575 def err_anon_type_definition : Error<
576   "declaration of anonymous %0 must be a definition">;
577 def err_default_delete_in_multiple_declaration : Error<
578   "'= %select{default|delete}0' is a function definition and must occur in a "
579   "standalone declaration">;
580
581 def warn_cxx98_compat_noexcept_expr : Warning<
582   "noexcept expressions are incompatible with C++98">,
583   InGroup<CXX98Compat>, DefaultIgnore;
584 def warn_cxx98_compat_nullptr : Warning<
585   "'nullptr' is incompatible with C++98">, InGroup<CXX98Compat>, DefaultIgnore;
586
587 def warn_cxx14_compat_attribute : Warning<
588   "attributes on %select{a namespace|an enumerator}0 declaration are "
589   "incompatible with C++ standards before C++1z">,
590   InGroup<CXXPre1zCompat>, DefaultIgnore;
591 def warn_cxx98_compat_alignas : Warning<"'alignas' is incompatible with C++98">,
592   InGroup<CXX98Compat>, DefaultIgnore;
593 def warn_cxx98_compat_attribute : Warning<
594   "C++11 attribute syntax is incompatible with C++98">,
595   InGroup<CXX98Compat>, DefaultIgnore;
596 def err_cxx11_attribute_forbids_arguments : Error<
597   "attribute %0 cannot have an argument list">;
598 def err_attribute_requires_arguments : Error<
599   "parentheses must be omitted if %0 attribute's argument list is empty">;
600 def err_cxx11_attribute_forbids_ellipsis : Error<
601   "attribute '%0' cannot be used as an attribute pack">;
602 def err_cxx11_attribute_repeated : Error<
603   "attribute %0 cannot appear multiple times in an attribute specifier">;
604 def err_attributes_not_allowed : Error<"an attribute list cannot appear here">;
605 def err_l_square_l_square_not_attribute : Error<
606   "C++11 only allows consecutive left square brackets when "
607   "introducing an attribute">;
608 def err_ms_declspec_type : Error<
609   "__declspec attributes must be an identifier or string literal">;
610 def err_ms_property_no_getter_or_putter : Error<
611   "property does not specify a getter or a putter">;
612 def err_ms_property_unknown_accessor : Error<
613   "expected 'get' or 'put' in property declaration">;
614 def err_ms_property_has_set_accessor : Error<
615   "putter for property must be specified as 'put', not 'set'">;
616 def err_ms_property_missing_accessor_kind : Error<
617   "missing 'get=' or 'put='">;
618 def err_ms_property_expected_equal : Error<
619   "expected '=' after '%0'">;
620 def err_ms_property_duplicate_accessor : Error<
621   "property declaration specifies '%0' accessor twice">;
622 def err_ms_property_expected_accessor_name : Error<
623   "expected name of accessor method">;
624 def err_ms_property_expected_comma_or_rparen : Error<
625   "expected ',' or ')' at end of property accessor list">;
626 def err_ms_property_initializer : Error<
627   "property declaration cannot have an in-class initializer">;
628
629 /// C++ Templates
630 def err_expected_template : Error<"expected template">;
631 def err_unknown_template_name : Error<
632   "unknown template name %0">;
633 def err_expected_comma_greater : Error<
634   "expected ',' or '>' in template-parameter-list">;
635 def err_class_on_template_template_param : Error<
636   "template template parameter requires 'class' after the parameter list">;
637 def ext_template_template_param_typename : ExtWarn<
638   "template template parameter using 'typename' is a C++1z extension">,
639   InGroup<CXX1z>;
640 def warn_cxx14_compat_template_template_param_typename : Warning<
641   "template template parameter using 'typename' is "
642   "incompatible with C++ standards before C++1z">,
643   InGroup<CXXPre1zCompat>, DefaultIgnore;
644 def err_template_spec_syntax_non_template : Error<
645   "identifier followed by '<' indicates a class template specialization but "
646   "%0 %select{does not refer to a template|refers to a function template|"
647   "<unused>|refers to a variable template|<unused>}1">;
648 def err_id_after_template_in_nested_name_spec : Error<
649   "expected template name after 'template' keyword in nested name specifier">;
650 def err_two_right_angle_brackets_need_space : Error<
651   "a space is required between consecutive right angle brackets (use '> >')">;
652 def err_right_angle_bracket_equal_needs_space : Error<
653   "a space is required between a right angle bracket and an equals sign "
654   "(use '> =')">;
655 def warn_cxx11_right_shift_in_template_arg : Warning<
656   "use of right-shift operator ('>>') in template argument will require "
657   "parentheses in C++11">, InGroup<CXX11Compat>;
658 def warn_cxx98_compat_two_right_angle_brackets : Warning<
659   "consecutive right angle brackets are incompatible with C++98 (use '> >')">,
660   InGroup<CXX98Compat>, DefaultIgnore;
661 def err_templated_invalid_declaration : Error<
662   "a static_assert declaration cannot be a template">;
663 def err_multiple_template_declarators : Error<
664   "%select{|a template declaration|an explicit template specialization|"
665   "an explicit template instantiation}0 can "
666   "only %select{|declare|declare|instantiate}0 a single entity">;
667 def err_explicit_instantiation_with_definition : Error<
668   "explicit template instantiation cannot have a definition; if this "
669   "definition is meant to be an explicit specialization, add '<>' after the "
670   "'template' keyword">;
671 def err_template_defn_explicit_instantiation : Error<
672   "%select{function|class|variable}0 cannot be defined in an explicit instantiation; if this "
673   "declaration is meant to be a %select{function|class|variable}0 definition, remove the 'template' keyword">;
674 def err_friend_explicit_instantiation : Error<
675   "friend cannot be declared in an explicit instantiation; if this "
676   "declaration is meant to be a friend declaration, remove the 'template' keyword">;
677 def err_explicit_instantiation_enum : Error<
678   "enumerations cannot be explicitly instantiated">;
679 def err_expected_template_parameter : Error<"expected template parameter">;
680
681 def err_missing_dependent_template_keyword : Error<
682   "use 'template' keyword to treat '%0' as a dependent template name">;
683 def warn_missing_dependent_template_keyword : ExtWarn<
684   "use 'template' keyword to treat '%0' as a dependent template name">;
685
686 def ext_extern_template : Extension<
687   "extern templates are a C++11 extension">, InGroup<CXX11>;
688 def warn_cxx98_compat_extern_template : Warning<
689   "extern templates are incompatible with C++98">,
690   InGroup<CXX98CompatPedantic>, DefaultIgnore;
691 def warn_static_inline_explicit_inst_ignored : Warning<
692   "ignoring '%select{static|inline}0' keyword on explicit template "
693   "instantiation">, InGroup<DiagGroup<"static-inline-explicit-instantiation">>;
694   
695 // Constructor template diagnostics.
696 def err_out_of_line_constructor_template_id : Error<
697   "out-of-line constructor for %0 cannot have template arguments">;
698 def err_out_of_line_template_id_names_constructor : Error<
699   "qualified reference to %0 is a constructor name rather than a "
700   "template name wherever a constructor can be declared">;
701 def err_out_of_line_type_names_constructor : Error<
702   "qualified reference to %0 is a constructor name rather than a "
703   "type wherever a constructor can be declared">;
704
705 def err_expected_qualified_after_typename : Error<
706   "expected a qualified name after 'typename'">;
707 def warn_expected_qualified_after_typename : ExtWarn<
708   "expected a qualified name after 'typename'">;
709
710 def err_typename_refers_to_non_type_template : Error<
711   "typename specifier refers to a non-type template">;
712 def err_expected_type_name_after_typename : Error<
713   "expected an identifier or template-id after '::'">;
714 def err_explicit_spec_non_template : Error<
715   "explicit %select{specialization|instantiation}0 of non-template %1 %2">;
716   
717 def err_default_template_template_parameter_not_template : Error<
718   "default template argument for a template template parameter must be a class "
719   "template">;
720
721 def ext_fold_expression : ExtWarn<
722   "pack fold expression is a C++1z extension">,
723   InGroup<CXX1z>;
724 def warn_cxx14_compat_fold_expression : Warning<
725   "pack fold expression is incompatible with C++ standards before C++1z">,
726   InGroup<CXXPre1zCompat>, DefaultIgnore;
727 def err_expected_fold_operator : Error<
728   "expected a foldable binary operator in fold expression">;
729 def err_fold_operator_mismatch : Error<
730   "operators in fold expression must be the same">;
731
732 def err_ctor_init_missing_comma : Error<
733   "missing ',' between base or member initializers">;
734
735 // C++ declarations
736 def err_friend_decl_defines_type : Error<
737   "cannot define a type in a friend declaration">;
738 def err_missing_whitespace_digraph : Error<
739   "found '<::' after a "
740   "%select{template name|const_cast|dynamic_cast|reinterpret_cast|static_cast}0"
741   " which forms the digraph '<:' (aka '[') and a ':', did you mean '< ::'?">;
742
743 def ext_deleted_function : ExtWarn<
744   "deleted function definitions are a C++11 extension">, InGroup<CXX11>;
745 def warn_cxx98_compat_deleted_function : Warning<
746   "deleted function definitions are incompatible with C++98">,
747   InGroup<CXX98Compat>, DefaultIgnore;
748 def ext_defaulted_function : ExtWarn<
749   "defaulted function definitions are a C++11 extension">, InGroup<CXX11>;
750 def warn_cxx98_compat_defaulted_function : Warning<
751   "defaulted function definitions are incompatible with C++98">,
752   InGroup<CXX98Compat>, DefaultIgnore;
753
754 // C++11 in-class member initialization
755 def ext_nonstatic_member_init : ExtWarn<
756   "in-class initialization of non-static data member is a C++11 extension">,
757   InGroup<CXX11>;
758 def warn_cxx98_compat_nonstatic_member_init : Warning<
759   "in-class initialization of non-static data members is incompatible with C++98">,
760   InGroup<CXX98Compat>, DefaultIgnore;
761 def err_bitfield_member_init: Error<
762   "bitfield member cannot have an in-class initializer">;
763 def err_incomplete_array_member_init: Error<
764   "array bound cannot be deduced from an in-class initializer">;
765
766 // C++11 alias-declaration
767 def ext_alias_declaration : ExtWarn<
768   "alias declarations are a C++11 extension">, InGroup<CXX11>;
769 def warn_cxx98_compat_alias_declaration : Warning<
770   "alias declarations are incompatible with C++98">,
771   InGroup<CXX98Compat>, DefaultIgnore;
772 def err_alias_declaration_not_identifier : Error<
773   "name defined in alias declaration must be an identifier">;
774 def err_alias_declaration_specialization : Error<
775   "%select{partial specialization|explicit specialization|explicit instantiation}0 of alias templates is not permitted">;
776
777 // C++11 override control
778 def ext_override_control_keyword : ExtWarn<
779   "'%0' keyword is a C++11 extension">, InGroup<CXX11>;
780 def warn_cxx98_compat_override_control_keyword : Warning<
781   "'%0' keyword is incompatible with C++98">,
782   InGroup<CXX98Compat>, DefaultIgnore;
783 def err_override_control_interface : Error<
784   "'%0' keyword not permitted with interface types">;
785 def ext_ms_sealed_keyword : ExtWarn<
786   "'sealed' keyword is a Microsoft extension">,
787   InGroup<Microsoft>;
788
789 def err_access_specifier_interface : Error<
790   "interface types cannot specify '%select{private|protected}0' access">;
791
792 def err_duplicate_virt_specifier : Error<
793   "class member already marked '%0'">;
794
795 def err_scoped_enum_missing_identifier : Error<
796   "scoped enumeration requires a name">;
797 def ext_scoped_enum : ExtWarn<
798   "scoped enumerations are a C++11 extension">, InGroup<CXX11>;
799 def warn_cxx98_compat_scoped_enum : Warning<
800   "scoped enumerations are incompatible with C++98">,
801   InGroup<CXX98Compat>, DefaultIgnore;
802
803 def err_expected_parameter_pack : Error<
804   "expected the name of a parameter pack">;
805 def err_paren_sizeof_parameter_pack : Error<
806   "missing parentheses around the size of parameter pack %0">;
807 def err_sizeof_parameter_pack : Error<
808   "expected parenthesized parameter pack name in 'sizeof...' expression">;
809
810 // C++11 lambda expressions
811 def err_expected_comma_or_rsquare : Error<
812   "expected ',' or ']' in lambda capture list">;
813 def err_this_captured_by_reference : Error<
814   "'this' cannot be captured by reference">;
815 def err_expected_capture : Error<
816   "expected variable name or 'this' in lambda capture list">;
817 def err_expected_lambda_body : Error<"expected body of lambda expression">;
818 def warn_cxx98_compat_lambda : Warning<
819   "lambda expressions are incompatible with C++98">,
820   InGroup<CXX98Compat>, DefaultIgnore;
821 def err_lambda_missing_parens : Error<
822   "lambda requires '()' before %select{'mutable'|return type|"
823   "attribute specifier}0">;
824 def warn_init_capture_direct_list_init : Warning<
825   "direct list initialization of a lambda init-capture will change meaning in "
826   "a future version of Clang; insert an '=' to avoid a change in behavior">,
827   InGroup<FutureCompat>;
828
829 // Availability attribute
830 def err_expected_version : Error<
831   "expected a version of the form 'major[.minor[.subminor]]'">;
832 def warn_expected_consistent_version_separator : Warning<
833   "use same version number separators '_' or '.'; as in "
834   "'major[.minor[.subminor]]'">, InGroup<Availability>;
835 def err_zero_version : Error<
836   "version number must have non-zero major, minor, or sub-minor version">;
837 def err_availability_expected_platform : Error<
838   "expected a platform name, e.g., 'macosx'">;
839   
840 // objc_bridge_related attribute
841 def err_objcbridge_related_expected_related_class : Error<
842   "expected a related ObjectiveC class name, e.g., 'NSColor'">;
843 def err_objcbridge_related_selector_name : Error<
844   "expected a class method selector with single argument, e.g., 'colorWithCGColor:'">;
845
846 def err_availability_expected_change : Error<
847   "expected 'introduced', 'deprecated', or 'obsoleted'">;
848 def err_availability_unknown_change : Error<
849   "%0 is not an availability stage; use 'introduced', 'deprecated', or "
850   "'obsoleted'">;
851 def err_availability_redundant : Error<
852   "redundant %0 availability change; only the last specified change will "
853   "be used">;
854 def warn_availability_and_unavailable : Warning<
855   "'unavailable' availability overrides all other availability information">,
856   InGroup<Availability>;
857
858 // Type safety attributes
859 def err_type_safety_unknown_flag : Error<
860   "invalid comparison flag %0; use 'layout_compatible' or 'must_be_null'">;
861
862 // Type traits
863 def err_type_trait_arity : Error<
864   "type trait requires %0%select{| or more}1 argument%select{|s}2; have "
865   "%3 argument%s3">;
866
867 // Language specific pragmas
868 // - Generic warnings
869 def warn_pragma_expected_lparen : Warning<
870   "missing '(' after '#pragma %0' - ignoring">, InGroup<IgnoredPragmas>;
871 def warn_pragma_expected_rparen : Warning<
872   "missing ')' after '#pragma %0' - ignoring">, InGroup<IgnoredPragmas>;
873 def warn_pragma_expected_identifier : Warning<
874   "expected identifier in '#pragma %0' - ignored">, InGroup<IgnoredPragmas>;
875 def warn_pragma_expected_section_name : Warning<
876   "expected a string literal for the section name in '#pragma %0' - ignored">,
877   InGroup<IgnoredPragmas>;
878 def warn_pragma_expected_section_push_pop_or_name : Warning<
879   "expected push, pop or a string literal for the section name in '#pragma %0' - ignored">,
880   InGroup<IgnoredPragmas>;
881 def warn_pragma_expected_section_label_or_name : Warning<
882   "expected a stack label or a string literal for the section name in '#pragma %0' - ignored">,
883   InGroup<IgnoredPragmas>;
884 def warn_pragma_expected_init_seg : Warning<
885   "expected 'compiler', 'lib', 'user', or a string literal for the section name in '#pragma %0' - ignored">,
886   InGroup<IgnoredPragmas>;
887 def warn_pragma_expected_integer : Warning<
888   "expected integer between %0 and %1 inclusive in '#pragma %2' - ignored">,
889   InGroup<IgnoredPragmas>;
890 def warn_pragma_ms_struct : Warning<
891   "incorrect use of '#pragma ms_struct on|off' - ignored">,
892   InGroup<IgnoredPragmas>;
893 def warn_pragma_extra_tokens_at_eol : Warning<
894   "extra tokens at end of '#pragma %0' - ignored">,
895   InGroup<IgnoredPragmas>;
896 def warn_pragma_expected_punc : Warning<
897   "expected ')' or ',' in '#pragma %0'">, InGroup<IgnoredPragmas>;
898 def warn_pragma_expected_non_wide_string : Warning<
899   "expected non-wide string literal in '#pragma %0'">, InGroup<IgnoredPragmas>;
900 // - Generic errors
901 def err_pragma_missing_argument : Error<
902   "missing argument to '#pragma %0'%select{|; expected %2}1">;
903 // - #pragma options
904 def warn_pragma_options_expected_align : Warning<
905   "expected 'align' following '#pragma options' - ignored">,
906   InGroup<IgnoredPragmas>;
907 def warn_pragma_align_expected_equal : Warning<
908   "expected '=' following '#pragma %select{align|options align}0' - ignored">,
909   InGroup<IgnoredPragmas>;
910 def warn_pragma_align_invalid_option : Warning<
911   "invalid alignment option in '#pragma %select{align|options align}0' - ignored">,
912   InGroup<IgnoredPragmas>;
913 // - #pragma pack
914 def warn_pragma_unsupported_action : Warning<
915   "known but unsupported action '%1' for '#pragma %0' - ignored">,
916   InGroup<IgnoredPragmas>;
917 def warn_pragma_invalid_specific_action : Warning<
918   "unknown action '%1' for '#pragma %0' - ignored">,
919   InGroup<IgnoredPragmas>;
920 def warn_pragma_expected_action_or_r_paren : Warning<
921   "expected action or ')' in '#pragma %0' - ignored">,
922   InGroup<IgnoredPragmas>;
923 def warn_pragma_invalid_action : Warning<
924   "unknown action for '#pragma %0' - ignored">,
925   InGroup<IgnoredPragmas>;
926 def warn_pragma_pack_malformed : Warning<
927   "expected integer or identifier in '#pragma pack' - ignored">,
928   InGroup<IgnoredPragmas>;
929 // - #pragma unused
930 def warn_pragma_unused_expected_var : Warning<
931   "expected '#pragma unused' argument to be a variable name">,
932   InGroup<IgnoredPragmas>;
933 // - #pragma init_seg
934 def warn_pragma_init_seg_unsupported_target : Warning<
935   "'#pragma init_seg' is only supported when targeting a "
936   "Microsoft environment">,
937   InGroup<IgnoredPragmas>;
938 // - #pragma fp_contract
939 def err_pragma_fp_contract_scope : Error<
940   "'#pragma fp_contract' can only appear at file scope or at the start of a "
941   "compound statement">; 
942 // - #pragma comment
943 def err_pragma_comment_malformed : Error<
944   "pragma comment requires parenthesized identifier and optional string">;
945 def err_pragma_comment_unknown_kind : Error<"unknown kind of pragma comment">;
946 // PS4 recognizes only #pragma comment(lib)
947 def warn_pragma_comment_ignored : Warning<"'#pragma comment %0' ignored">,
948   InGroup<Microsoft>;
949 // - #pragma detect_mismatch
950 def err_pragma_detect_mismatch_malformed : Error<
951   "pragma detect_mismatch is malformed; it requires two comma-separated "
952   "string literals">;
953 // - #pragma pointers_to_members
954 def err_pragma_pointers_to_members_unknown_kind : Error<
955   "unexpected %0, expected to see one of %select{|'best_case', 'full_generality', }1"
956   "'single_inheritance', 'multiple_inheritance', or 'virtual_inheritance'">;
957 // - #pragma clang optimize on/off
958 def err_pragma_optimize_invalid_argument : Error<
959   "unexpected argument '%0' to '#pragma clang optimize'; "
960   "expected 'on' or 'off'">;
961 def err_pragma_optimize_extra_argument : Error<
962   "unexpected extra argument '%0' to '#pragma clang optimize'">;
963
964 // OpenCL Section 6.8.g
965 def err_opencl_unknown_type_specifier : Error<
966   "OpenCL does not support the '%0' %select{type qualifier|storage class specifier}1">;
967
968 // OpenCL EXTENSION pragma (OpenCL 1.1 [9.1])
969 def warn_pragma_expected_colon : Warning<
970   "missing ':' after %0 - ignoring">, InGroup<IgnoredPragmas>;
971 def warn_pragma_expected_enable_disable : Warning<
972   "expected 'enable' or 'disable' - ignoring">, InGroup<IgnoredPragmas>;
973 def warn_pragma_unknown_extension : Warning<
974   "unknown OpenCL extension %0 - ignoring">, InGroup<IgnoredPragmas>;
975
976 // OpenMP support.
977 def warn_pragma_omp_ignored : Warning<
978   "unexpected '#pragma omp ...' in program">, InGroup<SourceUsesOpenMP>, DefaultIgnore;
979 def warn_omp_extra_tokens_at_eol : Warning<
980   "extra tokens at the end of '#pragma omp %0' are ignored">,
981   InGroup<ExtraTokens>;
982 def err_omp_unknown_directive : Error<
983   "expected an OpenMP directive">;
984 def err_omp_unexpected_directive : Error<
985   "unexpected OpenMP directive '#pragma omp %0'">;
986 def err_omp_expected_punc : Error<
987   "expected ',' or ')' in '%0' %select{clause|directive}1">;
988 def err_omp_unexpected_clause : Error<
989   "unexpected OpenMP clause '%0' in directive '#pragma omp %1'">;
990 def err_omp_more_one_clause : Error<
991   "directive '#pragma omp %0' cannot contain more than one '%1' clause">;
992 def err_omp_immediate_directive : Error<
993   "'#pragma omp %0' cannot be an immediate substatement">;
994 def err_omp_expected_identifier_for_critical : Error<
995   "expected identifier specifying the name of the 'omp critical' directive">;
996
997 // Pragma loop support.
998 def err_pragma_loop_missing_argument : Error<
999   "missing argument; expected %select{an integer value|"
1000   "%select{'enable', 'assume_safety'|'full'}1 or 'disable'}0">;
1001 def err_pragma_loop_invalid_option : Error<
1002   "%select{invalid|missing}0 option%select{ %1|}0; expected vectorize, "
1003   "vectorize_width, interleave, interleave_count, unroll, or unroll_count">;
1004 def err_pragma_invalid_keyword : Error<
1005   "invalid argument; expected %select{'enable', 'assume_safety'|'full'}0 or 'disable'">;
1006
1007 // Pragma unroll support.
1008 def warn_pragma_unroll_cuda_value_in_parens : Warning<
1009   "argument to '#pragma unroll' should not be in parentheses in CUDA C/C++">,
1010   InGroup<CudaCompat>;
1011 } // end of Parse Issue category.
1012
1013 let CategoryName = "Modules Issue" in {
1014 def err_module_expected_ident : Error<
1015   "expected a module name after module import">;
1016 def err_module_expected_semi : Error<
1017   "expected ';' after module name">;
1018 }
1019
1020 let CategoryName = "Generics Issue" in {
1021
1022 def err_objc_expected_type_parameter : Error<
1023   "expected type parameter name">;
1024
1025 def err_objc_parameterized_implementation : Error<
1026   "@implementation cannot have type parameters">;
1027
1028 def err_objc_type_args_after_protocols : Error<
1029   "protocol qualifiers must precede type arguments">;
1030 }
1031
1032 } // end of Parser diagnostics