]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td
MFV r299425:
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / include / clang / Basic / DiagnosticSemaKinds.td
1 //==--- DiagnosticSemaKinds.td - libsema 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 // Semantic Analysis
12 //===----------------------------------------------------------------------===//
13
14 let Component = "Sema" in {
15 let CategoryName = "Semantic Issue" in {
16
17 def note_previous_decl : Note<"%0 declared here">;
18 def note_entity_declared_at : Note<"%0 declared here">;
19 def note_callee_decl : Note<"%0 declared here">;
20 def note_defined_here : Note<"%0 defined here">;
21
22 // For loop analysis
23 def warn_variables_not_in_loop_body : Warning<
24   "variable%select{s| %1|s %1 and %2|s %1, %2, and %3|s %1, %2, %3, and %4}0 "
25   "used in loop condition not modified in loop body">,
26   InGroup<ForLoopAnalysis>, DefaultIgnore;
27 def warn_redundant_loop_iteration : Warning<
28   "variable %0 is %select{decremented|incremented}1 both in the loop header "
29   "and in the loop body">,
30   InGroup<ForLoopAnalysis>, DefaultIgnore;
31 def note_loop_iteration_here : Note<"%select{decremented|incremented}0 here">;
32
33 def warn_for_range_const_reference_copy : Warning<
34   "loop variable %0 "
35   "%diff{has type $ but is initialized with type $"
36   "| is initialized with a value of a different type}1,2 resulting in a copy">,
37   InGroup<RangeLoopAnalysis>, DefaultIgnore;
38 def note_use_type_or_non_reference : Note<
39   "use non-reference type %0 to keep the copy or type %1 to prevent copying">;
40 def warn_for_range_variable_always_copy : Warning<
41   "loop variable %0 is always a copy because the range of type %1 does not "
42   "return a reference">,
43   InGroup<RangeLoopAnalysis>, DefaultIgnore;
44 def note_use_non_reference_type : Note<"use non-reference type %0">;
45 def warn_for_range_copy : Warning<
46   "loop variable %0 of type %1 creates a copy from type %2">,
47   InGroup<RangeLoopAnalysis>, DefaultIgnore;
48 def note_use_reference_type : Note<"use reference type %0 to prevent copying">;
49
50 def warn_duplicate_enum_values : Warning<
51   "element %0 has been implicitly assigned %1 which another element has "
52   "been assigned">, InGroup<DiagGroup<"duplicate-enum">>, DefaultIgnore;
53 def note_duplicate_element : Note<"element %0 also has value %1">;
54
55 // Absolute value functions
56 def warn_unsigned_abs : Warning<
57   "taking the absolute value of unsigned type %0 has no effect">,
58   InGroup<AbsoluteValue>;
59 def note_remove_abs : Note<
60   "remove the call to '%0' since unsigned values cannot be negative">;
61 def warn_abs_too_small : Warning<
62   "absolute value function %0 given an argument of type %1 but has parameter "
63   "of type %2 which may cause truncation of value">, InGroup<AbsoluteValue>;
64 def warn_wrong_absolute_value_type : Warning<
65   "using %select{integer|floating point|complex}1 absolute value function %0 "
66   "when argument is of %select{integer|floating point|complex}2 type">,
67   InGroup<AbsoluteValue>;
68 def note_replace_abs_function : Note<"use function '%0' instead">;
69 def warn_pointer_abs : Warning<
70   "taking the absolute value of %select{pointer|function|array}0 type %1 is suspicious">,
71   InGroup<AbsoluteValue>;
72
73 def warn_infinite_recursive_function : Warning<
74   "all paths through this function will call itself">,
75   InGroup<InfiniteRecursion>, DefaultIgnore;
76
77 // Constant expressions
78 def err_expr_not_ice : Error<
79   "expression is not an %select{integer|integral}0 constant expression">;
80 def ext_expr_not_ice : Extension<
81   "expression is not an %select{integer|integral}0 constant expression; "
82   "folding it to a constant is a GNU extension">, InGroup<GNUFoldingConstant>;
83 def err_typecheck_converted_constant_expression : Error<
84   "value of type %0 is not implicitly convertible to %1">;
85 def err_typecheck_converted_constant_expression_disallowed : Error<
86   "conversion from %0 to %1 is not allowed in a converted constant expression">;
87 def err_typecheck_converted_constant_expression_indirect : Error<
88   "conversion from %0 to %1 in converted constant expression would "
89   "bind reference to a temporary">;
90 def err_expr_not_cce : Error<
91   "%select{case value|enumerator value|non-type template argument|array size}0 "
92   "is not a constant expression">;
93 def ext_cce_narrowing : ExtWarn<
94   "%select{case value|enumerator value|non-type template argument|array size}0 "
95   "%select{cannot be narrowed from type %2 to %3|"
96   "evaluates to %2, which cannot be narrowed to type %3}1">,
97   InGroup<CXX11Narrowing>, DefaultError, SFINAEFailure;
98 def err_ice_not_integral : Error<
99   "integral constant expression must have integral or unscoped enumeration "
100   "type, not %0">;
101 def err_ice_incomplete_type : Error<
102   "integral constant expression has incomplete class type %0">;
103 def err_ice_explicit_conversion : Error<
104   "integral constant expression requires explicit conversion from %0 to %1">;
105 def note_ice_conversion_here : Note<
106   "conversion to %select{integral|enumeration}0 type %1 declared here">;
107 def err_ice_ambiguous_conversion : Error<
108   "ambiguous conversion from type %0 to an integral or unscoped "
109   "enumeration type">;
110 def err_ice_too_large : Error<
111   "integer constant expression evaluates to value %0 that cannot be "
112   "represented in a %1-bit %select{signed|unsigned}2 integer type">;
113 def err_expr_not_string_literal : Error<"expression is not a string literal">;
114
115 // Semantic analysis of constant literals.
116 def ext_predef_outside_function : Warning<
117   "predefined identifier is only valid inside function">,
118   InGroup<DiagGroup<"predefined-identifier-outside-function">>;
119 def warn_float_overflow : Warning<
120   "magnitude of floating-point constant too large for type %0; maximum is %1">,
121    InGroup<LiteralRange>;
122 def warn_float_underflow : Warning<
123   "magnitude of floating-point constant too small for type %0; minimum is %1">,
124   InGroup<LiteralRange>;
125 def warn_double_const_requires_fp64 : Warning<
126   "double precision constant requires cl_khr_fp64, casting to single precision">;
127
128 // C99 variable-length arrays
129 def ext_vla : Extension<"variable length arrays are a C99 feature">,
130   InGroup<VLAExtension>;
131 def warn_vla_used : Warning<"variable length array used">,
132   InGroup<VLA>, DefaultIgnore;
133 def err_vla_non_pod : Error<"variable length array of non-POD element type %0">;
134 def err_vla_in_sfinae : Error<
135   "variable length array cannot be formed during template argument deduction">;
136 def err_array_star_in_function_definition : Error<
137   "variable length array must be bound in function definition">;
138 def err_vla_decl_in_file_scope : Error<
139   "variable length array declaration not allowed at file scope">;
140 def err_vla_decl_has_static_storage : Error<
141   "variable length array declaration cannot have 'static' storage duration">;
142 def err_vla_decl_has_extern_linkage : Error<
143   "variable length array declaration cannot have 'extern' linkage">;
144 def ext_vla_folded_to_constant : Extension<
145   "variable length array folded to constant array as an extension">, InGroup<GNUFoldingConstant>;
146
147 // C99 variably modified types
148 def err_variably_modified_template_arg : Error<
149   "variably modified type %0 cannot be used as a template argument">;
150 def err_variably_modified_nontype_template_param : Error<
151   "non-type template parameter of variably modified type %0">;
152 def err_variably_modified_new_type : Error<
153   "'new' cannot allocate object of variably modified type %0">;
154
155 // C99 Designated Initializers
156 def ext_designated_init : Extension<
157   "designated initializers are a C99 feature">, InGroup<C99>;
158 def err_array_designator_negative : Error<
159   "array designator value '%0' is negative">;
160 def err_array_designator_empty_range : Error<
161   "array designator range [%0, %1] is empty">;
162 def err_array_designator_non_array : Error<
163   "array designator cannot initialize non-array type %0">;
164 def err_array_designator_too_large : Error<
165   "array designator index (%0) exceeds array bounds (%1)">;
166 def err_field_designator_non_aggr : Error<
167   "field designator cannot initialize a "
168   "%select{non-struct, non-union|non-class}0 type %1">;
169 def err_field_designator_unknown : Error<
170   "field designator %0 does not refer to any field in type %1">;
171 def err_field_designator_nonfield : Error<
172   "field designator %0 does not refer to a non-static data member">;
173 def note_field_designator_found : Note<"field designator refers here">;
174 def err_designator_for_scalar_init : Error<
175   "designator in initializer for scalar type %0">;
176 def warn_subobject_initializer_overrides : Warning<
177   "subobject initialization overrides initialization of other fields "
178   "within its enclosing subobject">, InGroup<InitializerOverrides>;
179 def warn_initializer_overrides : Warning<
180   "initializer overrides prior initialization of this subobject">,
181   InGroup<InitializerOverrides>;
182 def note_previous_initializer : Note<
183   "previous initialization %select{|with side effects }0is here"
184   "%select{| (side effects may not occur at run time)}0">;
185 def err_designator_into_flexible_array_member : Error<
186   "designator into flexible array member subobject">;
187 def note_flexible_array_member : Note<
188   "initialized flexible array member %0 is here">;
189 def ext_flexible_array_init : Extension<
190   "flexible array initialization is a GNU extension">, InGroup<GNUFlexibleArrayInitializer>;
191
192 // Declarations.
193 def ext_duplicate_declspec : ExtWarn<"duplicate '%0' declaration specifier">,
194   InGroup<DuplicateDeclSpecifier>;
195 def warn_duplicate_declspec : Warning<"duplicate '%0' declaration specifier">,
196   InGroup<DuplicateDeclSpecifier>;
197 def ext_plain_complex : ExtWarn<
198   "plain '_Complex' requires a type specifier; assuming '_Complex double'">;
199 def ext_integer_complex : Extension<
200   "complex integer types are a GNU extension">, InGroup<GNUComplexInteger>;
201
202 def err_invalid_sign_spec : Error<"'%0' cannot be signed or unsigned">;
203 def err_invalid_width_spec : Error<
204   "'%select{|short|long|long long}0 %1' is invalid">;
205 def err_invalid_complex_spec : Error<"'_Complex %0' is invalid">;
206 def err_friend_decl_spec : Error<"'%0' is invalid in friend declarations">;
207
208 def ext_auto_type_specifier : ExtWarn<
209   "'auto' type specifier is a C++11 extension">, InGroup<CXX11>;
210 def warn_auto_storage_class : Warning<
211   "'auto' storage class specifier is redundant and incompatible with C++11">,
212   InGroup<CXX11Compat>, DefaultIgnore;
213
214 def warn_deprecated_register : Warning<
215   "'register' storage class specifier is deprecated "
216   "and incompatible with C++1z">, InGroup<DeprecatedRegister>;
217 def ext_register_storage_class : ExtWarn<
218   "ISO C++1z does not allow 'register' storage class specifier">,
219   DefaultError, InGroup<Register>;
220
221 def err_invalid_decl_spec_combination : Error<
222   "cannot combine with previous '%0' declaration specifier">;
223 def err_invalid_vector_decl_spec_combination : Error<
224   "cannot combine with previous '%0' declaration specifier. "
225   "'__vector' must be first">;
226 def err_invalid_pixel_decl_spec_combination : Error<
227   "'__pixel' must be preceded by '__vector'.  "
228   "'%0' declaration specifier not allowed here">;
229 def err_invalid_vector_bool_decl_spec : Error<
230   "cannot use '%0' with '__vector bool'">;
231 def err_invalid_vector_long_decl_spec : Error<
232   "cannot use 'long' with '__vector'">;
233 def err_invalid_vector_float_decl_spec : Error<
234   "cannot use 'float' with '__vector'">;
235 def err_invalid_vector_double_decl_spec : Error <
236   "use of 'double' with '__vector' requires VSX support to be enabled "
237   "(available on POWER7 or later)">;
238 def err_invalid_vector_long_long_decl_spec : Error <
239   "use of 'long long' with '__vector bool' requires VSX support (available on "
240   "POWER7 or later) or extended Altivec support (available on POWER8 or later) " 
241   "to be enabled">;
242 def err_invalid_vector_long_double_decl_spec : Error<
243   "cannot use 'long double' with '__vector'">;
244 def warn_vector_long_decl_spec_combination : Warning<
245   "Use of 'long' with '__vector' is deprecated">, InGroup<Deprecated>;
246
247 def err_use_of_tag_name_without_tag : Error<
248   "must use '%1' tag to refer to type %0%select{| in this scope}2">;
249
250 def err_redeclaration_different_type : Error<
251   "redeclaration of %0 with a different type%diff{: $ vs $|}1,2">;
252 def err_bad_variable_name : Error<
253   "%0 cannot be the name of a variable or data member">;
254 def err_bad_parameter_name : Error<
255   "%0 cannot be the name of a parameter">;
256 def err_parameter_name_omitted : Error<"parameter name omitted">;
257 def warn_mips_interrupt_attribute : Warning<
258    "MIPS 'interrupt' attribute only applies to functions that have "
259    "%select{no parameters|a 'void' return type}0">,
260    InGroup<IgnoredAttributes>;
261 def warn_unused_parameter : Warning<"unused parameter %0">,
262   InGroup<UnusedParameter>, DefaultIgnore;
263 def warn_unused_variable : Warning<"unused variable %0">,
264   InGroup<UnusedVariable>, DefaultIgnore;
265 def warn_unused_local_typedef : Warning<
266   "unused %select{typedef|type alias}0 %1">,
267   InGroup<UnusedLocalTypedef>, DefaultIgnore;
268 def warn_unused_property_backing_ivar : 
269   Warning<"ivar %0 which backs the property is not "
270   "referenced in this property's accessor">,
271   InGroup<UnusedPropertyIvar>, DefaultIgnore;
272 def warn_unused_const_variable : Warning<"unused variable %0">,
273   InGroup<UnusedConstVariable>, DefaultIgnore;
274 def warn_unused_exception_param : Warning<"unused exception parameter %0">,
275   InGroup<UnusedExceptionParameter>, DefaultIgnore;
276 def warn_decl_in_param_list : Warning<
277   "declaration of %0 will not be visible outside of this function">,
278   InGroup<Visibility>;
279 def warn_redefinition_in_param_list : Warning<
280   "redefinition of %0 will not be visible outside of this function">,
281   InGroup<Visibility>;
282 def warn_empty_parens_are_function_decl : Warning<
283   "empty parentheses interpreted as a function declaration">,
284   InGroup<VexingParse>;
285 def warn_parens_disambiguated_as_function_declaration : Warning<
286   "parentheses were disambiguated as a function declaration">,
287   InGroup<VexingParse>;
288 def note_additional_parens_for_variable_declaration : Note<
289   "add a pair of parentheses to declare a variable">;
290 def note_empty_parens_function_call : Note<
291   "change this ',' to a ';' to call %0">;
292 def note_empty_parens_default_ctor : Note<
293   "remove parentheses to declare a variable">;
294 def note_empty_parens_zero_initialize : Note<
295   "replace parentheses with an initializer to declare a variable">;
296 def warn_unused_function : Warning<"unused function %0">,
297   InGroup<UnusedFunction>, DefaultIgnore;
298 def warn_unused_member_function : Warning<"unused member function %0">,
299   InGroup<UnusedMemberFunction>, DefaultIgnore;
300 def warn_used_but_marked_unused: Warning<"%0 was marked unused but was used">,
301   InGroup<UsedButMarkedUnused>, DefaultIgnore;
302 def warn_unneeded_internal_decl : Warning<
303   "%select{function|variable}0 %1 is not needed and will not be emitted">,
304   InGroup<UnneededInternalDecl>, DefaultIgnore;
305 def warn_unneeded_static_internal_decl : Warning<
306   "'static' function %0 declared in header file "
307   "should be declared 'static inline'">,
308   InGroup<UnneededInternalDecl>, DefaultIgnore;
309 def warn_unneeded_member_function : Warning<
310   "member function %0 is not needed and will not be emitted">,
311   InGroup<UnneededMemberFunction>, DefaultIgnore;
312 def warn_unused_private_field: Warning<"private field %0 is not used">,
313   InGroup<UnusedPrivateField>, DefaultIgnore;
314
315 def warn_parameter_size: Warning<
316   "%0 is a large (%1 bytes) pass-by-value argument; "
317   "pass it by reference instead ?">, InGroup<LargeByValueCopy>;
318 def warn_return_value_size: Warning<
319   "return value of %0 is a large (%1 bytes) pass-by-value object; "
320   "pass it by reference instead ?">, InGroup<LargeByValueCopy>;
321 def warn_return_value_udt: Warning<
322   "%0 has C-linkage specified, but returns user-defined type %1 which is "
323   "incompatible with C">, InGroup<ReturnTypeCLinkage>;
324 def warn_return_value_udt_incomplete: Warning<
325   "%0 has C-linkage specified, but returns incomplete type %1 which could be "
326   "incompatible with C">, InGroup<ReturnTypeCLinkage>;
327 def warn_implicit_function_decl : Warning<
328   "implicit declaration of function %0">,
329   InGroup<ImplicitFunctionDeclare>, DefaultIgnore;
330 def ext_implicit_function_decl : ExtWarn<
331   "implicit declaration of function %0 is invalid in C99">,
332   InGroup<ImplicitFunctionDeclare>;
333 def note_function_suggestion : Note<"did you mean %0?">;
334
335 def err_ellipsis_first_param : Error<
336   "ISO C requires a named parameter before '...'">;
337 def err_declarator_need_ident : Error<"declarator requires an identifier">;
338 def err_language_linkage_spec_unknown : Error<"unknown linkage language">;
339 def err_language_linkage_spec_not_ascii : Error<
340   "string literal in language linkage specifier cannot have an "
341   "encoding-prefix">;
342 def warn_use_out_of_scope_declaration : Warning<
343   "use of out-of-scope declaration of %0">;
344 def err_inline_non_function : Error<
345   "'inline' can only appear on functions">;
346 def err_noreturn_non_function : Error<
347   "'_Noreturn' can only appear on functions">;
348 def warn_qual_return_type : Warning< 
349   "'%0' type qualifier%s1 on return type %plural{1:has|:have}1 no effect">,
350   InGroup<IgnoredQualifiers>, DefaultIgnore;
351
352 def warn_decl_shadow :
353   Warning<"declaration shadows a %select{"
354           "local variable|"
355           "variable in %2|"
356           "static data member of %2|"
357           "field of %2}1">,
358   InGroup<Shadow>, DefaultIgnore;
359
360 // C++ using declarations
361 def err_using_requires_qualname : Error<
362   "using declaration requires a qualified name">;
363 def err_using_typename_non_type : Error<
364   "'typename' keyword used on a non-type">;
365 def err_using_dependent_value_is_type : Error<
366   "dependent using declaration resolved to type without 'typename'">;
367 def err_using_decl_nested_name_specifier_is_not_class : Error<
368   "using declaration in class refers into '%0', which is not a class">;
369 def err_using_decl_nested_name_specifier_is_current_class : Error<
370   "using declaration refers to its own class">;
371 def err_using_decl_nested_name_specifier_is_not_base_class : Error<
372   "using declaration refers into '%0', which is not a base class of %1">;
373 def err_using_decl_constructor_not_in_direct_base : Error<
374   "%0 is not a direct base of %1, cannot inherit constructors">;
375 def err_using_decl_constructor_conflict : Error<
376   "cannot inherit constructor, already inherited constructor with "
377   "the same signature">;
378 def note_using_decl_constructor_conflict_current_ctor : Note<
379   "conflicting constructor">;
380 def note_using_decl_constructor_conflict_previous_ctor : Note<
381   "previous constructor">;
382 def note_using_decl_constructor_conflict_previous_using : Note<
383   "previously inherited here">;
384 def warn_using_decl_constructor_ellipsis : Warning<
385   "inheriting constructor does not inherit ellipsis">,
386   InGroup<DiagGroup<"inherited-variadic-ctor">>;
387 def note_using_decl_constructor_ellipsis : Note<
388   "constructor declared with ellipsis here">;
389 def err_using_decl_can_not_refer_to_class_member : Error<
390   "using declaration cannot refer to class member">;
391 def note_using_decl_class_member_workaround : Note<
392   "use %select{an alias declaration|a typedef declaration|a reference}0 "
393   "instead">;
394 def err_using_decl_can_not_refer_to_namespace : Error<
395   "using declaration cannot refer to namespace">;
396 def err_using_decl_constructor : Error<
397   "using declaration cannot refer to a constructor">;
398 def warn_cxx98_compat_using_decl_constructor : Warning<
399   "inheriting constructors are incompatible with C++98">,
400   InGroup<CXX98Compat>, DefaultIgnore;
401 def err_using_decl_destructor : Error<
402   "using declaration cannot refer to a destructor">;
403 def err_using_decl_template_id : Error<
404   "using declaration cannot refer to a template specialization">;
405 def note_using_decl_target : Note<"target of using declaration">;
406 def note_using_decl_conflict : Note<"conflicting declaration">;
407 def err_using_decl_redeclaration : Error<"redeclaration of using decl">;
408 def err_using_decl_conflict : Error<
409   "target of using declaration conflicts with declaration already in scope">;
410 def err_using_decl_conflict_reverse : Error<
411   "declaration conflicts with target of using declaration already in scope">;
412 def note_using_decl : Note<"%select{|previous }0using declaration">;
413
414 def warn_access_decl_deprecated : Warning<
415   "access declarations are deprecated; use using declarations instead">,
416   InGroup<Deprecated>;
417 def err_access_decl : Error<
418   "ISO C++11 does not allow access declarations; "
419   "use using declarations instead">;
420 def warn_exception_spec_deprecated : Warning<
421   "dynamic exception specifications are deprecated">,
422   InGroup<Deprecated>, DefaultIgnore;
423 def note_exception_spec_deprecated : Note<"use '%0' instead">;
424 def warn_deprecated_copy_operation : Warning<
425   "definition of implicit copy %select{constructor|assignment operator}1 "
426   "for %0 is deprecated because it has a user-declared "
427   "%select{copy %select{assignment operator|constructor}1|destructor}2">,
428   InGroup<Deprecated>, DefaultIgnore;
429
430 def warn_global_constructor : Warning<
431   "declaration requires a global constructor">,
432   InGroup<GlobalConstructors>, DefaultIgnore;
433 def warn_global_destructor : Warning<
434   "declaration requires a global destructor">,
435    InGroup<GlobalConstructors>, DefaultIgnore;
436 def warn_exit_time_destructor : Warning<
437   "declaration requires an exit-time destructor">,
438   InGroup<ExitTimeDestructors>, DefaultIgnore;
439
440 def err_invalid_thread : Error<
441   "'%0' is only allowed on variable declarations">;
442 def err_thread_non_global : Error<
443   "'%0' variables must have global storage">;
444 def err_thread_unsupported : Error<
445   "thread-local storage is not supported for the current target">;
446
447 def warn_maybe_falloff_nonvoid_function : Warning<
448   "control may reach end of non-void function">,
449   InGroup<ReturnType>;
450 def warn_falloff_nonvoid_function : Warning<
451   "control reaches end of non-void function">,
452   InGroup<ReturnType>;
453 def err_maybe_falloff_nonvoid_block : Error<
454   "control may reach end of non-void block">;
455 def err_falloff_nonvoid_block : Error<
456   "control reaches end of non-void block">;
457 def warn_suggest_noreturn_function : Warning<
458   "%select{function|method}0 %1 could be declared with attribute 'noreturn'">,
459   InGroup<MissingNoreturn>, DefaultIgnore;
460 def warn_suggest_noreturn_block : Warning<
461   "block could be declared with attribute 'noreturn'">,
462   InGroup<MissingNoreturn>, DefaultIgnore;
463
464 // Unreachable code.
465 def warn_unreachable : Warning<
466   "code will never be executed">,
467   InGroup<UnreachableCode>, DefaultIgnore;
468 def warn_unreachable_break : Warning<
469   "'break' will never be executed">,
470   InGroup<UnreachableCodeBreak>, DefaultIgnore;
471 def warn_unreachable_return : Warning<
472   "'return' will never be executed">,
473   InGroup<UnreachableCodeReturn>, DefaultIgnore;
474 def warn_unreachable_loop_increment : Warning<
475   "loop will run at most once (loop increment never executed)">,
476   InGroup<UnreachableCodeLoopIncrement>, DefaultIgnore;
477 def note_unreachable_silence : Note<
478   "silence by adding parentheses to mark code as explicitly dead">;
479
480 /// Built-in functions.
481 def ext_implicit_lib_function_decl : ExtWarn<
482   "implicitly declaring library function '%0' with type %1">,
483   InGroup<ImplicitFunctionDeclare>;
484 def note_include_header_or_declare : Note<
485   "include the header <%0> or explicitly provide a declaration for '%1'">;
486 def note_previous_builtin_declaration : Note<"%0 is a builtin with type %1">;
487 def warn_implicit_decl_requires_sysheader : Warning<
488   "declaration of built-in function '%1' requires inclusion of the header <%0>">,
489   InGroup<BuiltinRequiresHeader>;
490 def warn_redecl_library_builtin : Warning<
491   "incompatible redeclaration of library function %0">,
492   InGroup<DiagGroup<"incompatible-library-redeclaration">>;
493 def err_builtin_definition : Error<"definition of builtin function %0">;
494 def err_arm_invalid_specialreg : Error<"invalid special register for builtin">;
495 def err_invalid_cpu_supports : Error<"invalid cpu feature string for builtin">;
496 def err_builtin_needs_feature : Error<"%0 needs target feature %1">;
497 def err_function_needs_feature
498     : Error<"always_inline function %1 requires target feature '%2', but would "
499             "be inlined into function %0 that is compiled without support for "
500             "'%2'">;
501 def warn_builtin_unknown : Warning<"use of unknown builtin %0">,
502   InGroup<ImplicitFunctionDeclare>, DefaultError;
503 def warn_dyn_class_memaccess : Warning<
504   "%select{destination for|source of|first operand of|second operand of}0 this "
505   "%1 call is a pointer to %select{|class containing a }2dynamic class %3; "
506   "vtable pointer will be %select{overwritten|copied|moved|compared}4">,
507   InGroup<DiagGroup<"dynamic-class-memaccess">>;
508 def note_bad_memaccess_silence : Note<
509   "explicitly cast the pointer to silence this warning">;
510 def warn_sizeof_pointer_expr_memaccess : Warning<
511   "'%0' call operates on objects of type %1 while the size is based on a " 
512   "different type %2">, 
513   InGroup<SizeofPointerMemaccess>;
514 def warn_sizeof_pointer_expr_memaccess_note : Note<
515   "did you mean to %select{dereference the argument to 'sizeof' (and multiply "
516   "it by the number of elements)|remove the addressof in the argument to "
517   "'sizeof' (and multiply it by the number of elements)|provide an explicit "
518   "length}0?">;
519 def warn_sizeof_pointer_type_memaccess : Warning<
520   "argument to 'sizeof' in %0 call is the same pointer type %1 as the "
521   "%select{destination|source}2; expected %3 or an explicit length">,
522   InGroup<SizeofPointerMemaccess>;
523 def warn_strlcpycat_wrong_size : Warning<
524   "size argument in %0 call appears to be size of the source; "
525   "expected the size of the destination">,
526   InGroup<DiagGroup<"strlcpy-strlcat-size">>;
527 def note_strlcpycat_wrong_size : Note<
528   "change size argument to be the size of the destination">;
529 def warn_memsize_comparison : Warning<
530   "size argument in %0 call is a comparison">,
531   InGroup<DiagGroup<"memsize-comparison">>;
532 def note_memsize_comparison_paren : Note<
533   "did you mean to compare the result of %0 instead?">;
534 def note_memsize_comparison_cast_silence : Note<
535   "explicitly cast the argument to size_t to silence this warning">;
536   
537 def warn_strncat_large_size : Warning<
538   "the value of the size argument in 'strncat' is too large, might lead to a " 
539   "buffer overflow">, InGroup<StrncatSize>;
540 def warn_strncat_src_size : Warning<"size argument in 'strncat' call appears " 
541   "to be size of the source">, InGroup<StrncatSize>;
542 def warn_strncat_wrong_size : Warning<
543   "the value of the size argument to 'strncat' is wrong">, InGroup<StrncatSize>;
544 def note_strncat_wrong_size : Note<
545   "change the argument to be the free space in the destination buffer minus " 
546   "the terminating null byte">;
547
548 def warn_assume_side_effects : Warning<
549   "the argument to %0 has side effects that will be discarded">,
550   InGroup<DiagGroup<"assume">>;
551
552 def warn_memcpy_chk_overflow : Warning<
553   "%0 will always overflow destination buffer">,
554   InGroup<DiagGroup<"builtin-memcpy-chk-size">>;
555
556 /// main()
557 // static main() is not an error in C, just in C++.
558 def warn_static_main : Warning<"'main' should not be declared static">,
559     InGroup<Main>;
560 def err_static_main : Error<"'main' is not allowed to be declared static">;
561 def err_inline_main : Error<"'main' is not allowed to be declared inline">;
562 def ext_variadic_main : ExtWarn<
563   "'main' is not allowed to be declared variadic">, InGroup<Main>;
564 def ext_noreturn_main : ExtWarn<
565   "'main' is not allowed to be declared _Noreturn">, InGroup<Main>;
566 def note_main_remove_noreturn : Note<"remove '_Noreturn'">;
567 def err_constexpr_main : Error<
568   "'main' is not allowed to be declared constexpr">;
569 def err_deleted_main : Error<"'main' is not allowed to be deleted">;
570 def err_mainlike_template_decl : Error<"%0 cannot be a template">;
571 def err_main_returns_nonint : Error<"'main' must return 'int'">;
572 def ext_main_returns_nonint : ExtWarn<"return type of 'main' is not 'int'">,
573     InGroup<MainReturnType>;
574 def note_main_change_return_type : Note<"change return type to 'int'">;
575 def err_main_surplus_args : Error<"too many parameters (%0) for 'main': "
576     "must be 0, 2, or 3">;
577 def warn_main_one_arg : Warning<"only one parameter on 'main' declaration">,
578     InGroup<Main>;
579 def err_main_arg_wrong : Error<"%select{first|second|third|fourth}0 "
580     "parameter of 'main' (%select{argument count|argument array|environment|"
581     "platform-specific data}0) must be of type %1">;
582 def err_main_global_variable :
583     Error<"main cannot be declared as global variable">;
584 def warn_main_redefined : Warning<"variable named 'main' with external linkage "
585     "has undefined behavior">, InGroup<Main>;
586 def ext_main_used : Extension<
587   "ISO C++ does not allow 'main' to be used by a program">, InGroup<Main>;
588
589 /// parser diagnostics
590 def ext_no_declarators : ExtWarn<"declaration does not declare anything">,
591   InGroup<MissingDeclarations>;
592 def ext_typedef_without_a_name : ExtWarn<"typedef requires a name">,
593   InGroup<MissingDeclarations>;
594 def err_typedef_not_identifier : Error<"typedef name must be an identifier">;
595 def err_typedef_changes_linkage : Error<"unsupported: typedef changes linkage"
596   " of anonymous type, but linkage was already computed">;
597 def note_typedef_changes_linkage : Note<"use a tag name here to establish "
598   "linkage prior to definition">;
599 def err_statically_allocated_object : Error<
600   "interface type cannot be statically allocated">;
601 def err_object_cannot_be_passed_returned_by_value : Error<
602   "interface type %1 cannot be %select{returned|passed}0 by value"
603   "; did you forget * in %1?">;
604 def err_parameters_retval_cannot_have_fp16_type : Error<
605   "%select{parameters|function return value}0 cannot have __fp16 type; did you forget * ?">;
606 def err_opencl_half_load_store : Error<
607   "%select{loading directly from|assigning directly to}0 pointer to type %1 is not allowed">;
608 def err_opencl_cast_to_half : Error<"casting to type %0 is not allowed">;
609 def err_opencl_half_declaration : Error<
610   "declaring variable of type %0 is not allowed">;
611 def err_opencl_half_param : Error<
612   "declaring function parameter of type %0 is not allowed; did you forget * ?">;
613 def err_opencl_half_return : Error<
614   "declaring function return value of type %0 is not allowed; did you forget * ?">;
615 def warn_enum_value_overflow : Warning<"overflow in enumeration value">;
616 def warn_pragma_options_align_reset_failed : Warning<
617   "#pragma options align=reset failed: %0">,
618   InGroup<IgnoredPragmas>;
619 def err_pragma_options_align_mac68k_target_unsupported : Error<
620   "mac68k alignment pragma is not supported on this target">;
621 def warn_pragma_pack_invalid_alignment : Warning<
622   "expected #pragma pack parameter to be '1', '2', '4', '8', or '16'">,
623   InGroup<IgnoredPragmas>;
624 // Follow the Microsoft implementation.
625 def warn_pragma_pack_show : Warning<"value of #pragma pack(show) == %0">;
626 def warn_pragma_pack_pop_identifer_and_alignment : Warning<
627   "specifying both a name and alignment to 'pop' is undefined">;
628 def warn_pragma_pop_failed : Warning<"#pragma %0(pop, ...) failed: %1">,
629   InGroup<IgnoredPragmas>;
630 def warn_cxx_ms_struct :
631   Warning<"ms_struct may not produce Microsoft-compatible layouts for classes "
632           "with base classes or virtual functions">,
633   DefaultError, InGroup<IncompatibleMSStruct>;
634 def err_section_conflict : Error<"%0 causes a section type conflict with %1">;
635 def err_no_base_classes : Error<"invalid use of '__super', %0 has no base classes">;
636 def err_invalid_super_scope : Error<"invalid use of '__super', "
637   "this keyword can only be used inside class or member function scope">;
638 def err_super_in_lambda_unsupported : Error<
639   "use of '__super' inside a lambda is unsupported">;
640
641 def warn_pragma_unused_undeclared_var : Warning<
642   "undeclared variable %0 used as an argument for '#pragma unused'">,
643   InGroup<IgnoredPragmas>;
644 def warn_pragma_unused_expected_var_arg : Warning<
645   "only variables can be arguments to '#pragma unused'">,
646   InGroup<IgnoredPragmas>;
647 def err_pragma_push_visibility_mismatch : Error<
648   "#pragma visibility push with no matching #pragma visibility pop">;
649 def note_surrounding_namespace_ends_here : Note<
650   "surrounding namespace with visibility attribute ends here">;
651 def err_pragma_pop_visibility_mismatch : Error<
652   "#pragma visibility pop with no matching #pragma visibility push">;
653 def note_surrounding_namespace_starts_here : Note<
654   "surrounding namespace with visibility attribute starts here">;
655 def err_pragma_loop_invalid_argument_type : Error<
656   "invalid argument of type %0; expected an integer type">;
657 def err_pragma_loop_invalid_argument_value : Error<
658   "%select{invalid value '%0'; must be positive|value '%0' is too large}1">;
659 def err_pragma_loop_compatibility : Error<
660   "%select{incompatible|duplicate}0 directives '%1' and '%2'">;
661 def err_pragma_loop_precedes_nonloop : Error<
662   "expected a for, while, or do-while loop to follow '%0'">;
663
664 /// Objective-C parser diagnostics
665 def err_duplicate_class_def : Error<
666   "duplicate interface definition for class %0">;
667 def err_undef_superclass : Error<
668   "cannot find interface declaration for %0, superclass of %1">;
669 def err_forward_superclass : Error<
670   "attempting to use the forward class %0 as superclass of %1">;
671 def err_no_nsconstant_string_class : Error<
672   "cannot find interface declaration for %0">;
673 def err_recursive_superclass : Error<
674   "trying to recursively use %0 as superclass of %1">;
675 def err_conflicting_aliasing_type : Error<"conflicting types for alias %0">;
676 def warn_undef_interface : Warning<"cannot find interface declaration for %0">;
677 def warn_duplicate_protocol_def : Warning<"duplicate protocol definition of %0 is ignored">;
678 def err_protocol_has_circular_dependency : Error<
679   "protocol has circular dependency">;
680 def err_undeclared_protocol : Error<"cannot find protocol declaration for %0">;
681 def warn_undef_protocolref : Warning<"cannot find protocol definition for %0">;
682 def warn_atprotocol_protocol : Warning<
683   "@protocol is using a forward protocol declaration of %0">, InGroup<AtProtocol>;
684 def warn_readonly_property : Warning<
685   "attribute 'readonly' of property %0 restricts attribute "
686   "'readwrite' of property inherited from %1">,
687   InGroup<PropertyAttr>;
688
689 def warn_property_attribute : Warning<
690   "'%1' attribute on property %0 does not match the property inherited from %2">,
691   InGroup<PropertyAttr>;
692 def warn_property_types_are_incompatible : Warning<
693   "property type %0 is incompatible with type %1 inherited from %2">,
694   InGroup<DiagGroup<"incompatible-property-type">>;
695 def warn_protocol_property_mismatch : Warning<
696   "property of type %0 was selected for synthesis">,
697   InGroup<DiagGroup<"protocol-property-synthesis-ambiguity">>;
698 def err_undef_interface : Error<"cannot find interface declaration for %0">;
699 def err_category_forward_interface : Error<
700   "cannot define %select{category|class extension}0 for undefined class %1">;
701 def err_class_extension_after_impl : Error<
702   "cannot declare class extension for %0 after class implementation">;
703 def note_implementation_declared : Note<
704   "class implementation is declared here">;
705 def note_while_in_implementation : Note<
706   "detected while default synthesizing properties in class implementation">;
707 def note_class_declared : Note<
708   "class is declared here">;
709 def note_receiver_class_declared : Note<
710   "receiver is instance of class declared here">;
711 def note_receiver_expr_here : Note<
712   "receiver expression is here">;
713 def note_receiver_is_id : Note<
714   "receiver is treated with 'id' type for purpose of method lookup">;
715 def note_suppressed_class_declare : Note<
716   "class with specified objc_requires_property_definitions attribute is declared here">;
717 def err_objc_root_class_subclass : Error<
718   "objc_root_class attribute may only be specified on a root class declaration">;
719 def warn_objc_root_class_missing : Warning<
720   "class %0 defined without specifying a base class">,
721   InGroup<ObjCRootClass>;
722 def note_objc_needs_superclass : Note<
723   "add a super class to fix this problem">;
724 def warn_dup_category_def : Warning<
725   "duplicate definition of category %1 on interface %0">;
726 def err_conflicting_super_class : Error<"conflicting super class name %0">;
727 def err_dup_implementation_class : Error<"reimplementation of class %0">;
728 def err_dup_implementation_category : Error<
729   "reimplementation of category %1 for class %0">;
730 def err_conflicting_ivar_type : Error<
731   "instance variable %0 has conflicting type%diff{: $ vs $|}1,2">;
732 def err_duplicate_ivar_declaration : Error<
733   "instance variable is already declared">;
734 def warn_on_superclass_use : Warning<
735   "class implementation may not have super class">;
736 def err_conflicting_ivar_bitwidth : Error<
737   "instance variable %0 has conflicting bit-field width">;
738 def err_conflicting_ivar_name : Error<
739   "conflicting instance variable names: %0 vs %1">;
740 def err_inconsistent_ivar_count : Error<
741   "inconsistent number of instance variables specified">;
742 def warn_undef_method_impl : Warning<"method definition for %0 not found">,
743   InGroup<DiagGroup<"incomplete-implementation">>;
744
745 def warn_conflicting_overriding_ret_types : Warning<
746   "conflicting return type in "
747   "declaration of %0%diff{: $ vs $|}1,2">,
748   InGroup<OverridingMethodMismatch>, DefaultIgnore;
749
750 def warn_conflicting_ret_types : Warning<
751   "conflicting return type in "
752   "implementation of %0%diff{: $ vs $|}1,2">,
753   InGroup<MismatchedReturnTypes>;
754
755 def warn_conflicting_overriding_ret_type_modifiers : Warning<
756   "conflicting distributed object modifiers on return type "
757   "in declaration of %0">,
758   InGroup<OverridingMethodMismatch>, DefaultIgnore;
759
760 def warn_conflicting_ret_type_modifiers : Warning<
761   "conflicting distributed object modifiers on return type "
762   "in implementation of %0">,
763   InGroup<DistributedObjectModifiers>;
764
765 def warn_non_covariant_overriding_ret_types : Warning<
766   "conflicting return type in "
767   "declaration of %0: %1 vs %2">,
768   InGroup<OverridingMethodMismatch>, DefaultIgnore;
769
770 def warn_non_covariant_ret_types : Warning<
771   "conflicting return type in "
772   "implementation of %0: %1 vs %2">,
773   InGroup<MethodSignatures>, DefaultIgnore;
774
775 def warn_conflicting_overriding_param_types : Warning<
776   "conflicting parameter types in "
777   "declaration of %0%diff{: $ vs $|}1,2">,
778   InGroup<OverridingMethodMismatch>, DefaultIgnore;
779
780 def warn_conflicting_param_types : Warning<
781   "conflicting parameter types in "
782   "implementation of %0%diff{: $ vs $|}1,2">,
783   InGroup<MismatchedParameterTypes>;
784
785 def warn_conflicting_param_modifiers : Warning<
786   "conflicting distributed object modifiers on parameter type "
787   "in implementation of %0">,
788   InGroup<DistributedObjectModifiers>;
789
790 def warn_conflicting_overriding_param_modifiers : Warning<
791   "conflicting distributed object modifiers on parameter type "
792   "in declaration of %0">,
793   InGroup<OverridingMethodMismatch>, DefaultIgnore;
794
795 def warn_non_contravariant_overriding_param_types : Warning<
796   "conflicting parameter types in "
797   "declaration of %0: %1 vs %2">,
798   InGroup<OverridingMethodMismatch>, DefaultIgnore;
799
800 def warn_non_contravariant_param_types : Warning<
801   "conflicting parameter types in "
802   "implementation of %0: %1 vs %2">,
803   InGroup<MethodSignatures>, DefaultIgnore;
804
805 def warn_conflicting_overriding_variadic :Warning<
806   "conflicting variadic declaration of method and its "
807   "implementation">,
808   InGroup<OverridingMethodMismatch>, DefaultIgnore;
809
810 def warn_conflicting_variadic :Warning<
811   "conflicting variadic declaration of method and its "
812   "implementation">;
813
814 def warn_category_method_impl_match:Warning<
815   "category is implementing a method which will also be implemented"
816   " by its primary class">, InGroup<ObjCProtocolMethodImpl>;
817
818 def warn_implements_nscopying : Warning<
819 "default assign attribute on property %0 which implements "
820 "NSCopying protocol is not appropriate with -fobjc-gc[-only]">;
821
822 def warn_multiple_method_decl : Warning<"multiple methods named %0 found">,
823   InGroup<ObjCMultipleMethodNames>;
824 def warn_strict_multiple_method_decl : Warning<
825   "multiple methods named %0 found">, InGroup<StrictSelector>, DefaultIgnore;
826 def warn_accessor_property_type_mismatch : Warning<
827   "type of property %0 does not match type of accessor %1">;
828 def not_conv_function_declared_at : Note<"type conversion function declared here">;
829 def note_method_declared_at : Note<"method %0 declared here">;
830 def note_property_attribute : Note<"property %0 is declared "
831   "%select{deprecated|unavailable|partial}1 here">;
832 def err_setter_type_void : Error<"type of setter must be void">;
833 def err_duplicate_method_decl : Error<"duplicate declaration of method %0">;
834 def warn_duplicate_method_decl : 
835   Warning<"multiple declarations of method %0 found and ignored">, 
836   InGroup<MethodDuplicate>, DefaultIgnore;
837 def warn_objc_cdirective_format_string :
838   Warning<"using %0 directive in %select{NSString|CFString}1 "
839           "which is being passed as a formatting argument to the formatting "
840           "%select{method|CFfunction}2">,
841   InGroup<ObjCCStringFormat>, DefaultIgnore;
842 def err_objc_var_decl_inclass : 
843     Error<"cannot declare variable inside @interface or @protocol">;
844 def error_missing_method_context : Error<
845   "missing context for method declaration">;
846 def err_objc_property_attr_mutually_exclusive : Error<
847   "property attributes '%0' and '%1' are mutually exclusive">;
848 def err_objc_property_requires_object : Error<
849   "property with '%0' attribute must be of object type">;
850 def warn_objc_property_no_assignment_attribute : Warning<
851   "no 'assign', 'retain', or 'copy' attribute is specified - "
852   "'assign' is assumed">,
853   InGroup<ObjCPropertyNoAttribute>;
854 def warn_objc_isa_use : Warning<
855   "direct access to Objective-C's isa is deprecated in favor of "
856   "object_getClass()">, InGroup<DeprecatedObjCIsaUsage>;
857 def warn_objc_isa_assign : Warning<
858   "assignment to Objective-C's isa is deprecated in favor of "
859   "object_setClass()">, InGroup<DeprecatedObjCIsaUsage>;
860 def warn_objc_pointer_masking : Warning<
861   "bitmasking for introspection of Objective-C object pointers is strongly "
862   "discouraged">,
863   InGroup<ObjCPointerIntrospect>;
864 def warn_objc_pointer_masking_performSelector : Warning<warn_objc_pointer_masking.Text>,
865   InGroup<ObjCPointerIntrospectPerformSelector>;
866 def warn_objc_property_default_assign_on_object : Warning<
867   "default property attribute 'assign' not appropriate for non-GC object">,
868   InGroup<ObjCPropertyNoAttribute>;
869 def warn_property_attr_mismatch : Warning<
870   "property attribute in class extension does not match the primary class">,
871   InGroup<PropertyAttr>;
872 def warn_property_implicitly_mismatched : Warning <
873   "primary property declaration is implicitly strong while redeclaration "
874   "in class extension is weak">,
875   InGroup<DiagGroup<"objc-property-implicit-mismatch">>;
876 def warn_objc_property_copy_missing_on_block : Warning<
877     "'copy' attribute must be specified for the block property "
878     "when -fobjc-gc-only is specified">;
879 def warn_objc_property_retain_of_block : Warning<
880     "retain'ed block property does not copy the block "
881     "- use copy attribute instead">, InGroup<ObjCRetainBlockProperty>;
882 def warn_objc_readonly_property_has_setter : Warning<
883     "setter cannot be specified for a readonly property">,
884     InGroup<ObjCReadonlyPropertyHasSetter>;
885 def warn_atomic_property_rule : Warning<
886   "writable atomic property %0 cannot pair a synthesized %select{getter|setter}1 "
887   "with a user defined %select{getter|setter}2">,
888   InGroup<DiagGroup<"atomic-property-with-user-defined-accessor">>;
889 def note_atomic_property_fixup_suggest : Note<"setter and getter must both be "
890   "synthesized, or both be user defined,or the property must be nonatomic">;
891 def err_atomic_property_nontrivial_assign_op : Error<
892   "atomic property of reference type %0 cannot have non-trivial assignment"
893   " operator">;
894 def warn_cocoa_naming_owned_rule : Warning<
895   "property follows Cocoa naming"
896   " convention for returning 'owned' objects">,
897   InGroup<DiagGroup<"objc-property-matches-cocoa-ownership-rule">>;
898 def err_cocoa_naming_owned_rule : Error<
899   "property follows Cocoa naming"
900   " convention for returning 'owned' objects">;
901 def note_cocoa_naming_declare_family : Note<
902   "explicitly declare getter %objcinstance0 with '%1' to return an 'unowned' "
903   "object">;
904 def warn_auto_synthesizing_protocol_property :Warning<
905   "auto property synthesis will not synthesize property %0"
906   " declared in protocol %1">,
907   InGroup<DiagGroup<"objc-protocol-property-synthesis">>;
908 def warn_no_autosynthesis_shared_ivar_property : Warning <
909   "auto property synthesis will not synthesize property "
910   "%0 because it cannot share an ivar with another synthesized property">,
911   InGroup<ObjCNoPropertyAutoSynthesis>;
912 def warn_no_autosynthesis_property : Warning<
913   "auto property synthesis will not synthesize property "
914   "%0 because it is 'readwrite' but it will be synthesized 'readonly' "
915   "via another property">,
916   InGroup<ObjCNoPropertyAutoSynthesis>;
917 def warn_autosynthesis_property_in_superclass : Warning<
918   "auto property synthesis will not synthesize property "
919   "%0; it will be implemented by its superclass, use @dynamic to "
920   "acknowledge intention">,
921   InGroup<ObjCNoPropertyAutoSynthesis>;
922 def warn_autosynthesis_property_ivar_match :Warning<
923   "autosynthesized property %0 will use %select{|synthesized}1 instance variable "
924   "%2, not existing instance variable %3">,
925   InGroup<DiagGroup<"objc-autosynthesis-property-ivar-name-match">>;
926 def warn_missing_explicit_synthesis : Warning <
927   "auto property synthesis is synthesizing property not explicitly synthesized">,
928   InGroup<DiagGroup<"objc-missing-property-synthesis">>, DefaultIgnore;
929 def warn_property_getter_owning_mismatch : Warning<
930   "property declared as returning non-retained objects"
931   "; getter returning retained objects">;
932 def warn_property_redecl_getter_mismatch : Warning<
933   "getter name mismatch between property redeclaration (%1) and its original "
934   "declaration (%0)">, InGroup<PropertyAttr>;
935 def error_property_setter_ambiguous_use : Error<
936   "synthesized properties %0 and %1 both claim setter %2 -"
937   " use of this setter will cause unexpected behavior">;
938 def warn_default_atomic_custom_getter_setter : Warning<
939   "atomic by default property %0 has a user defined %select{getter|setter}1 "
940   "(property should be marked 'atomic' if this is intended)">,
941   InGroup<CustomAtomic>, DefaultIgnore;
942 def err_use_continuation_class : Error<
943   "illegal redeclaration of property in class extension %0"
944   " (attribute must be 'readwrite', while its primary must be 'readonly')">;
945 def err_type_mismatch_continuation_class : Error<
946   "type of property %0 in class extension does not match "
947   "property type in primary class">;
948 def err_use_continuation_class_redeclaration_readwrite : Error<
949   "illegal redeclaration of 'readwrite' property in class extension %0"
950   " (perhaps you intended this to be a 'readwrite' redeclaration of a "
951   "'readonly' public property?)">;
952 def err_continuation_class : Error<"class extension has no primary class">;
953 def err_property_type : Error<"property cannot have array or function type %0">;
954 def error_missing_property_context : Error<
955   "missing context for property implementation declaration">;
956 def error_bad_property_decl : Error<
957   "property implementation must have its declaration in interface %0 or one of "
958   "its extensions">;
959 def error_category_property : Error<
960   "property declared in category %0 cannot be implemented in "
961   "class implementation">;
962 def note_property_declare : Note<
963   "property declared here">;
964 def note_protocol_property_declare : Note<
965   "it could also be property of type %0 declared here">;
966 def note_property_synthesize : Note<
967   "property synthesized here">;
968 def error_synthesize_category_decl : Error<
969   "@synthesize not allowed in a category's implementation">;
970 def error_reference_property : Error<
971   "property of reference type is not supported">;
972 def error_missing_property_interface : Error<
973   "property implementation in a category with no category declaration">;
974 def error_bad_category_property_decl : Error<
975   "property implementation must have its declaration in the category %0">;
976 def error_bad_property_context : Error<
977   "property implementation must be in a class or category implementation">;
978 def error_missing_property_ivar_decl : Error<
979   "synthesized property %0 must either be named the same as a compatible"
980   " instance variable or must explicitly name an instance variable">;
981 def err_arc_perform_selector_retains : Error<
982   "performSelector names a selector which retains the object">;
983 def warn_arc_perform_selector_leaks : Warning<
984   "performSelector may cause a leak because its selector is unknown">,
985   InGroup<DiagGroup<"arc-performSelector-leaks">>;
986 def warn_dealloc_in_category : Warning<
987 "-dealloc is being overridden in a category">,
988 InGroup<DeallocInCategory>;
989 def err_gc_weak_property_strong_type : Error<
990   "weak attribute declared on a __strong type property in GC mode">;
991 def warn_arc_repeated_use_of_weak : Warning <
992   "weak %select{variable|property|implicit property|instance variable}0 %1 is "
993   "accessed multiple times in this %select{function|method|block|lambda}2 "
994   "but may be unpredictably set to nil; assign to a strong variable to keep "
995   "the object alive">,
996   InGroup<ARCRepeatedUseOfWeak>, DefaultIgnore;
997 def warn_implicitly_retains_self : Warning <
998   "block implicitly retains 'self'; explicitly mention 'self' to indicate "
999   "this is intended behavior">,
1000   InGroup<DiagGroup<"implicit-retain-self">>, DefaultIgnore;
1001 def warn_arc_possible_repeated_use_of_weak : Warning <
1002   "weak %select{variable|property|implicit property|instance variable}0 %1 may "
1003   "be accessed multiple times in this %select{function|method|block|lambda}2 "
1004   "and may be unpredictably set to nil; assign to a strong variable to keep "
1005   "the object alive">,
1006   InGroup<ARCRepeatedUseOfWeakMaybe>, DefaultIgnore;
1007 def note_arc_weak_also_accessed_here : Note<
1008   "also accessed here">;
1009 def err_incomplete_synthesized_property : Error<
1010   "cannot synthesize property %0 with incomplete type %1">;
1011
1012 def error_property_ivar_type : Error<
1013   "type of property %0 (%1) does not match type of instance variable %2 (%3)">;
1014 def error_property_accessor_type : Error<
1015   "type of property %0 (%1) does not match type of accessor %2 (%3)">;
1016 def error_ivar_in_superclass_use : Error<
1017   "property %0 attempting to use instance variable %1 declared in super class %2">;
1018 def error_weak_property : Error<
1019   "existing instance variable %1 for __weak property %0 must be __weak">;
1020 def error_strong_property : Error<
1021   "existing instance variable %1 for strong property %0 may not be __weak">;
1022 def error_dynamic_property_ivar_decl : Error<
1023   "dynamic property cannot have instance variable specification">;
1024 def error_duplicate_ivar_use : Error<
1025   "synthesized properties %0 and %1 both claim instance variable %2">;
1026 def error_property_implemented : Error<"property %0 is already implemented">;
1027 def warn_objc_missing_super_call : Warning<
1028   "method possibly missing a [super %0] call">,
1029   InGroup<ObjCMissingSuperCalls>;
1030 def error_dealloc_bad_result_type : Error<
1031   "dealloc return type must be correctly specified as 'void' under ARC, "
1032   "instead of %0">;
1033 def warn_undeclared_selector : Warning<
1034   "undeclared selector %0">, InGroup<UndeclaredSelector>, DefaultIgnore;
1035 def warn_undeclared_selector_with_typo : Warning<
1036   "undeclared selector %0; did you mean %1?">,
1037   InGroup<UndeclaredSelector>, DefaultIgnore;
1038 def warn_implicit_atomic_property : Warning<
1039   "property is assumed atomic by default">, InGroup<ImplicitAtomic>, DefaultIgnore;
1040 def note_auto_readonly_iboutlet_fixup_suggest : Note<
1041   "property should be changed to be readwrite">;
1042 def warn_auto_readonly_iboutlet_property : Warning<
1043   "readonly IBOutlet property %0 when auto-synthesized may "
1044   "not work correctly with 'nib' loader">,
1045   InGroup<DiagGroup<"readonly-iboutlet-property">>;
1046 def warn_auto_implicit_atomic_property : Warning<
1047   "property is assumed atomic when auto-synthesizing the property">,
1048   InGroup<ImplicitAtomic>, DefaultIgnore;
1049 def warn_unimplemented_selector:  Warning<
1050   "no method with selector %0 is implemented in this translation unit">, 
1051   InGroup<Selector>, DefaultIgnore;
1052 def warn_unimplemented_protocol_method : Warning<
1053   "method %0 in protocol %1 not implemented">, InGroup<Protocol>;
1054 def warning_multiple_selectors: Warning<
1055   "several methods with selector %0 of mismatched types are found "
1056   "for the @selector expression">,
1057   InGroup<SelectorTypeMismatch>, DefaultIgnore;
1058
1059 def err_objc_kindof_nonobject : Error<
1060   "'__kindof' specifier cannot be applied to non-object type %0">;
1061 def err_objc_kindof_wrong_position : Error<
1062   "'__kindof' type specifier must precede the declarator">;
1063
1064 // C++ declarations
1065 def err_static_assert_expression_is_not_constant : Error<
1066   "static_assert expression is not an integral constant expression">;
1067 def err_static_assert_failed : Error<"static_assert failed%select{ %1|}0">;
1068 def ext_static_assert_no_message : ExtWarn<
1069   "static_assert with no message is a C++1z extension">, InGroup<CXX1z>;
1070 def warn_cxx14_compat_static_assert_no_message : Warning<
1071   "static_assert with no message is incompatible with C++ standards before C++1z">,
1072   DefaultIgnore, InGroup<CXXPre1zCompat>;
1073
1074 def warn_inline_namespace_reopened_noninline : Warning<
1075   "inline namespace cannot be reopened as a non-inline namespace">;
1076 def err_inline_namespace_mismatch : Error<
1077   "%select{|non-}0inline namespace "
1078   "cannot be reopened as %select{non-|}0inline">;
1079
1080 def err_unexpected_friend : Error<
1081   "friends can only be classes or functions">;
1082 def ext_enum_friend : ExtWarn<
1083   "befriending enumeration type %0 is a C++11 extension">, InGroup<CXX11>;
1084 def warn_cxx98_compat_enum_friend : Warning<
1085   "befriending enumeration type %0 is incompatible with C++98">,
1086   InGroup<CXX98Compat>, DefaultIgnore;
1087 def ext_nonclass_type_friend : ExtWarn<
1088   "non-class friend type %0 is a C++11 extension">, InGroup<CXX11>;
1089 def warn_cxx98_compat_nonclass_type_friend : Warning<
1090   "non-class friend type %0 is incompatible with C++98">,
1091   InGroup<CXX98Compat>, DefaultIgnore;
1092 def err_friend_is_member : Error<
1093   "friends cannot be members of the declaring class">;
1094 def warn_cxx98_compat_friend_is_member : Warning<
1095   "friend declaration naming a member of the declaring class is incompatible "
1096   "with C++98">, InGroup<CXX98Compat>, DefaultIgnore;
1097 def ext_unelaborated_friend_type : ExtWarn<
1098   "unelaborated friend declaration is a C++11 extension; specify "
1099   "'%select{struct|interface|union|class|enum}0' to befriend %1">,
1100   InGroup<CXX11>;
1101 def warn_cxx98_compat_unelaborated_friend_type : Warning<
1102   "befriending %1 without '%select{struct|interface|union|class|enum}0' "
1103   "keyword is incompatible with C++98">, InGroup<CXX98Compat>, DefaultIgnore;
1104 def err_qualified_friend_not_found : Error<
1105   "no function named %0 with type %1 was found in the specified scope">;
1106 def err_introducing_special_friend : Error<
1107   "must use a qualified name when declaring a %select{constructor|"
1108   "destructor|conversion operator}0 as a friend">;
1109 def err_tagless_friend_type_template : Error<
1110   "friend type templates must use an elaborated type">;
1111 def err_no_matching_local_friend : Error<
1112   "no matching function found in local scope">;
1113 def err_no_matching_local_friend_suggest : Error<
1114   "no matching function %0 found in local scope; did you mean %3?">;
1115 def err_partial_specialization_friend : Error<
1116   "partial specialization cannot be declared as a friend">;
1117 def err_qualified_friend_def : Error<
1118   "friend function definition cannot be qualified with '%0'">;
1119 def err_friend_def_in_local_class : Error<
1120   "friend function cannot be defined in a local class">;
1121 def err_friend_not_first_in_declaration : Error<
1122   "'friend' must appear first in a non-function declaration">;
1123 def err_using_decl_friend : Error<
1124   "cannot befriend target of using declaration">;
1125 def warn_template_qualified_friend_unsupported : Warning<
1126   "dependent nested name specifier '%0' for friend class declaration is "
1127   "not supported; turning off access control for %1">,
1128   InGroup<UnsupportedFriend>;
1129 def warn_template_qualified_friend_ignored : Warning<
1130   "dependent nested name specifier '%0' for friend template declaration is "
1131   "not supported; ignoring this friend declaration">,
1132   InGroup<UnsupportedFriend>;
1133 def ext_friend_tag_redecl_outside_namespace : ExtWarn<
1134   "unqualified friend declaration referring to type outside of the nearest "
1135   "enclosing namespace is a Microsoft extension; add a nested name specifier">,
1136   InGroup<MicrosoftUnqualifiedFriend>;
1137 def err_pure_friend : Error<"friend declaration cannot have a pure-specifier">;
1138
1139 def err_invalid_member_in_interface : Error<
1140   "%select{data member |non-public member function |static member function |"
1141           "user-declared constructor|user-declared destructor|operator |"
1142           "nested class }0%1 is not permitted within an interface type">;
1143 def err_invalid_base_in_interface : Error<
1144   "interface type cannot inherit from "
1145   "%select{'struct|non-public 'interface|'class}0 %1'">;
1146
1147 def err_abstract_type_in_decl : Error<
1148   "%select{return|parameter|variable|field|instance variable|"
1149   "synthesized instance variable}0 type %1 is an abstract class">;
1150 def err_allocation_of_abstract_type : Error<
1151   "allocating an object of abstract class type %0">;
1152 def err_throw_abstract_type : Error<
1153   "cannot throw an object of abstract type %0">;
1154 def err_array_of_abstract_type : Error<"array of abstract class type %0">;
1155 def err_capture_of_abstract_type : Error<
1156   "by-copy capture of value of abstract type %0">;
1157 def err_capture_of_incomplete_type : Error<
1158   "by-copy capture of variable %0 with incomplete type %1">;
1159 def err_capture_default_non_local : Error<
1160   "non-local lambda expression cannot have a capture-default">;
1161
1162 def err_multiple_final_overriders : Error<
1163   "virtual function %q0 has more than one final overrider in %1">; 
1164 def note_final_overrider : Note<"final overrider of %q0 in %1">;
1165
1166 def err_type_defined_in_type_specifier : Error<
1167   "%0 cannot be defined in a type specifier">;
1168 def err_type_defined_in_result_type : Error<
1169   "%0 cannot be defined in the result type of a function">;
1170 def err_type_defined_in_param_type : Error<
1171   "%0 cannot be defined in a parameter type">;
1172 def err_type_defined_in_alias_template : Error<
1173   "%0 cannot be defined in a type alias template">;
1174 def err_type_defined_in_condition : Error<
1175   "%0 cannot be defined in a condition">;
1176
1177 def note_pure_virtual_function : Note<
1178   "unimplemented pure virtual method %0 in %1">;
1179
1180 def note_pure_qualified_call_kext : Note<
1181   "qualified call to %0::%1 is treated as a virtual call to %1 due to -fapple-kext">;
1182
1183 def err_deleted_decl_not_first : Error<
1184   "deleted definition must be first declaration">;
1185
1186 def err_deleted_override : Error<
1187   "deleted function %0 cannot override a non-deleted function">;
1188
1189 def err_non_deleted_override : Error<
1190   "non-deleted function %0 cannot override a deleted function">;
1191
1192 def warn_weak_vtable : Warning<
1193   "%0 has no out-of-line virtual method definitions; its vtable will be "
1194   "emitted in every translation unit">,
1195   InGroup<DiagGroup<"weak-vtables">>, DefaultIgnore;
1196 def warn_weak_template_vtable : Warning<
1197   "explicit template instantiation %0 will emit a vtable in every "
1198   "translation unit">,
1199   InGroup<DiagGroup<"weak-template-vtables">>, DefaultIgnore;
1200
1201 def ext_using_undefined_std : ExtWarn<
1202   "using directive refers to implicitly-defined namespace 'std'">;
1203   
1204 // C++ exception specifications
1205 def err_exception_spec_in_typedef : Error<
1206   "exception specifications are not allowed in %select{typedefs|type aliases}0">;
1207 def err_distant_exception_spec : Error<
1208   "exception specifications are not allowed beyond a single level "
1209   "of indirection">;
1210 def err_incomplete_in_exception_spec : Error<
1211   "%select{|pointer to |reference to }0incomplete type %1 is not allowed "
1212   "in exception specification">;
1213 def err_rref_in_exception_spec : Error<
1214   "rvalue reference type %0 is not allowed in exception specification">;
1215 def err_mismatched_exception_spec : Error<
1216   "exception specification in declaration does not match previous declaration">;
1217 def ext_mismatched_exception_spec : ExtWarn<err_mismatched_exception_spec.Text>,
1218   InGroup<MicrosoftExceptionSpec>;
1219 def err_override_exception_spec : Error<
1220   "exception specification of overriding function is more lax than "
1221   "base version">;
1222 def ext_override_exception_spec : ExtWarn<err_override_exception_spec.Text>,
1223   InGroup<MicrosoftExceptionSpec>;
1224 def err_incompatible_exception_specs : Error<
1225   "target exception specification is not superset of source">;
1226 def err_deep_exception_specs_differ : Error<
1227   "exception specifications of %select{return|argument}0 types differ">;
1228 def err_missing_exception_specification : Error<
1229   "%0 is missing exception specification '%1'">;
1230 def ext_missing_exception_specification : ExtWarn<
1231   err_missing_exception_specification.Text>,
1232   InGroup<DiagGroup<"missing-exception-spec">>;
1233 def ext_ms_missing_exception_specification : ExtWarn<
1234   err_missing_exception_specification.Text>,
1235   InGroup<MicrosoftExceptionSpec>;
1236 def err_noexcept_needs_constant_expression : Error<
1237   "argument to noexcept specifier must be a constant expression">;
1238 def err_exception_spec_not_parsed : Error<
1239   "exception specification is not available until end of class definition">;
1240
1241 // C++ access checking
1242 def err_class_redeclared_with_different_access : Error<
1243   "%0 redeclared with '%1' access">;
1244 def err_access : Error<
1245   "%1 is a %select{private|protected}0 member of %3">, AccessControl;
1246 def ext_ms_using_declaration_inaccessible : ExtWarn<
1247   "using declaration referring to inaccessible member '%0' (which refers "
1248   "to accessible member '%1') is a Microsoft compatibility extension">,
1249     AccessControl, InGroup<MicrosoftUsingDecl>;
1250 def err_access_ctor : Error<
1251   "calling a %select{private|protected}0 constructor of class %2">, 
1252   AccessControl;
1253 def ext_rvalue_to_reference_access_ctor : Extension<
1254   "C++98 requires an accessible copy constructor for class %2 when binding "
1255   "a reference to a temporary; was %select{private|protected}0">,
1256   AccessControl, InGroup<BindToTemporaryCopy>;
1257 def err_access_base_ctor : Error<
1258   // The ERRORs represent other special members that aren't constructors, in
1259   // hopes that someone will bother noticing and reporting if they appear
1260   "%select{base class|inherited virtual base class}0 %1 has %select{private|"
1261   "protected}3 %select{default |copy |move |*ERROR* |*ERROR* "
1262   "|*ERROR*|}2constructor">, AccessControl;
1263 def err_access_field_ctor : Error<
1264   // The ERRORs represent other special members that aren't constructors, in
1265   // hopes that someone will bother noticing and reporting if they appear
1266   "field of type %0 has %select{private|protected}2 "
1267   "%select{default |copy |move |*ERROR* |*ERROR* |*ERROR* |}1constructor">,
1268   AccessControl;
1269 def err_access_friend_function : Error<
1270   "friend function %1 is a %select{private|protected}0 member of %3">,
1271   AccessControl;
1272
1273 def err_access_dtor : Error<
1274   "calling a %select{private|protected}1 destructor of class %0">, 
1275   AccessControl;
1276 def err_access_dtor_base :
1277     Error<"base class %0 has %select{private|protected}1 destructor">,
1278     AccessControl;
1279 def err_access_dtor_vbase :
1280     Error<"inherited virtual base class %1 has "
1281     "%select{private|protected}2 destructor">,
1282     AccessControl;
1283 def err_access_dtor_temp :
1284     Error<"temporary of type %0 has %select{private|protected}1 destructor">,
1285     AccessControl;
1286 def err_access_dtor_exception :
1287     Error<"exception object of type %0 has %select{private|protected}1 "
1288           "destructor">, AccessControl;
1289 def err_access_dtor_field :
1290     Error<"field of type %1 has %select{private|protected}2 destructor">,
1291     AccessControl;
1292 def err_access_dtor_var :
1293     Error<"variable of type %1 has %select{private|protected}2 destructor">,
1294     AccessControl;
1295 def err_access_dtor_ivar :
1296     Error<"instance variable of type %0 has %select{private|protected}1 "
1297           "destructor">,
1298     AccessControl;
1299 def note_previous_access_declaration : Note<
1300   "previously declared '%1' here">;
1301 def note_access_natural : Note<
1302   "%select{|implicitly }1declared %select{private|protected}0 here">;
1303 def note_access_constrained_by_path : Note<
1304   "constrained by %select{|implicitly }1%select{private|protected}0"
1305   " inheritance here">;
1306 def note_access_protected_restricted_noobject : Note<
1307   "must name member using the type of the current context %0">;
1308 def note_access_protected_restricted_ctordtor : Note<
1309   "protected %select{constructor|destructor}0 can only be used to "
1310   "%select{construct|destroy}0 a base class subobject">;
1311 def note_access_protected_restricted_object : Note<
1312   "can only access this member on an object of type %0">;
1313 def warn_cxx98_compat_sfinae_access_control : Warning<
1314   "substitution failure due to access control is incompatible with C++98">,
1315   InGroup<CXX98Compat>, DefaultIgnore, NoSFINAE;
1316   
1317 // C++ name lookup
1318 def err_incomplete_nested_name_spec : Error<
1319   "incomplete type %0 named in nested name specifier">;
1320 def err_dependent_nested_name_spec : Error<
1321   "nested name specifier for a declaration cannot depend on a template "
1322   "parameter">;
1323 def err_nested_name_member_ref_lookup_ambiguous : Error<
1324   "lookup of %0 in member access expression is ambiguous">;
1325 def ext_nested_name_member_ref_lookup_ambiguous : ExtWarn<
1326   "lookup of %0 in member access expression is ambiguous; using member of %1">,
1327   InGroup<AmbigMemberTemplate>;
1328 def note_ambig_member_ref_object_type : Note<
1329   "lookup in the object type %0 refers here">;
1330 def note_ambig_member_ref_scope : Note<
1331   "lookup from the current scope refers here">;
1332 def err_qualified_member_nonclass : Error<
1333   "qualified member access refers to a member in %0">;
1334 def err_incomplete_member_access : Error<
1335   "member access into incomplete type %0">;
1336 def err_incomplete_type : Error<
1337   "incomplete type %0 where a complete type is required">;
1338 def warn_cxx98_compat_enum_nested_name_spec : Warning<
1339   "enumeration type in nested name specifier is incompatible with C++98">,
1340   InGroup<CXX98Compat>, DefaultIgnore;
1341 def err_nested_name_spec_is_not_class : Error<
1342   "%0 cannot appear before '::' because it is not a class"
1343   "%select{ or namespace|, namespace, or enumeration}1; did you mean ':'?">;
1344 def ext_nested_name_spec_is_enum : ExtWarn<
1345   "use of enumeration in a nested name specifier is a C++11 extension">,
1346   InGroup<CXX11>;
1347
1348 // C++ class members
1349 def err_storageclass_invalid_for_member : Error<
1350   "storage class specified for a member declaration">;
1351 def err_mutable_function : Error<"'mutable' cannot be applied to functions">;
1352 def err_mutable_reference : Error<"'mutable' cannot be applied to references">;
1353 def ext_mutable_reference : ExtWarn<
1354   "'mutable' on a reference type is a Microsoft extension">,
1355   InGroup<MicrosoftMutableReference>;
1356 def err_mutable_const : Error<"'mutable' and 'const' cannot be mixed">;
1357 def err_mutable_nonmember : Error<
1358   "'mutable' can only be applied to member variables">;
1359 def err_virtual_in_union : Error<
1360   "unions cannot have virtual functions">;
1361 def err_virtual_non_function : Error<
1362   "'virtual' can only appear on non-static member functions">;
1363 def err_virtual_out_of_class : Error<
1364   "'virtual' can only be specified inside the class definition">;
1365 def err_virtual_member_function_template : Error<
1366   "'virtual' cannot be specified on member function templates">;
1367 def err_static_overrides_virtual : Error<
1368   "'static' member function %0 overrides a virtual function in a base class">;
1369 def err_explicit_non_function : Error<
1370   "'explicit' can only appear on non-static member functions">;
1371 def err_explicit_out_of_class : Error<
1372   "'explicit' can only be specified inside the class definition">;
1373 def err_explicit_non_ctor_or_conv_function : Error<
1374   "'explicit' can only be applied to a constructor or conversion function">;
1375 def err_static_not_bitfield : Error<"static member %0 cannot be a bit-field">;
1376 def err_static_out_of_line : Error<
1377   "'static' can only be specified inside the class definition">;
1378 def err_storage_class_for_static_member : Error<
1379   "static data member definition cannot specify a storage class">;
1380 def err_typedef_not_bitfield : Error<"typedef member %0 cannot be a bit-field">;
1381 def err_not_integral_type_bitfield : Error<
1382   "bit-field %0 has non-integral type %1">;
1383 def err_not_integral_type_anon_bitfield : Error<
1384   "anonymous bit-field has non-integral type %0">;
1385 def err_member_function_initialization : Error<
1386   "initializer on function does not look like a pure-specifier">;
1387 def err_non_virtual_pure : Error<
1388   "%0 is not virtual and cannot be declared pure">;
1389 def ext_pure_function_definition : ExtWarn<
1390   "function definition with pure-specifier is a Microsoft extension">,
1391   InGroup<MicrosoftPureDefinition>;
1392 def err_implicit_object_parameter_init : Error<
1393   "cannot initialize object parameter of type %0 with an expression "
1394   "of type %1">;
1395 def err_qualified_member_of_unrelated : Error<
1396   "%q0 is not a member of class %1">;
1397
1398 def warn_call_to_pure_virtual_member_function_from_ctor_dtor : Warning<
1399   "call to pure virtual member function %0 has undefined behavior; "
1400   "overrides of %0 in subclasses are not available in the "
1401   "%select{constructor|destructor}1 of %2">;
1402
1403 def note_member_declared_at : Note<"member is declared here">;
1404 def note_ivar_decl : Note<"instance variable is declared here">;
1405 def note_bitfield_decl : Note<"bit-field is declared here">;
1406 def note_implicit_param_decl : Note<"%0 is an implicit parameter">;
1407 def note_member_synthesized_at : Note<
1408   "implicit %select{default constructor|copy constructor|move constructor|copy "
1409   "assignment operator|move assignment operator|destructor}0 for %1 first "
1410   "required here">;
1411 def note_inhctor_synthesized_at : Note<
1412   "inheriting constructor for %0 first required here">;
1413 def err_missing_default_ctor : Error<
1414   "%select{|implicit default |inheriting }0constructor for %1 must explicitly "
1415   "initialize the %select{base class|member}2 %3 which does not have a default "
1416   "constructor">;
1417 def note_due_to_dllexported_class : Note<
1418   "due to '%0' being dllexported%select{|; try compiling in C++11 mode}1">;
1419
1420 def err_illegal_union_or_anon_struct_member : Error<
1421   "%select{anonymous struct|union}0 member %1 has a non-trivial "
1422   "%select{constructor|copy constructor|move constructor|copy assignment "
1423   "operator|move assignment operator|destructor}2">;
1424 def warn_cxx98_compat_nontrivial_union_or_anon_struct_member : Warning<
1425   "%select{anonymous struct|union}0 member %1 with a non-trivial "
1426   "%select{constructor|copy constructor|move constructor|copy assignment "
1427   "operator|move assignment operator|destructor}2 is incompatible with C++98">,
1428   InGroup<CXX98Compat>, DefaultIgnore;
1429
1430 def note_nontrivial_virtual_dtor : Note<
1431   "destructor for %0 is not trivial because it is virtual">;
1432 def note_nontrivial_has_virtual : Note<
1433   "because type %0 has a virtual %select{member function|base class}1">;
1434 def note_nontrivial_no_def_ctor : Note<
1435   "because %select{base class of |field of |}0type %1 has no "
1436   "default constructor">;
1437 def note_user_declared_ctor : Note<
1438   "implicit default constructor suppressed by user-declared constructor">;
1439 def note_nontrivial_no_copy : Note<
1440   "because no %select{<<ERROR>>|constructor|constructor|assignment operator|"
1441   "assignment operator|<<ERROR>>}2 can be used to "
1442   "%select{<<ERROR>>|copy|move|copy|move|<<ERROR>>}2 "
1443   "%select{base class|field|an object}0 of type %3">;
1444 def note_nontrivial_user_provided : Note<
1445   "because %select{base class of |field of |}0type %1 has a user-provided "
1446   "%select{default constructor|copy constructor|move constructor|"
1447   "copy assignment operator|move assignment operator|destructor}2">;
1448 def note_nontrivial_in_class_init : Note<
1449   "because field %0 has an initializer">;
1450 def note_nontrivial_param_type : Note<
1451   "because its parameter is %diff{of type $, not $|of the wrong type}2,3">;
1452 def note_nontrivial_default_arg : Note<"because it has a default argument">;
1453 def note_nontrivial_variadic : Note<"because it is a variadic function">;
1454 def note_nontrivial_subobject : Note<
1455   "because the function selected to %select{construct|copy|move|copy|move|"
1456   "destroy}2 %select{base class|field}0 of type %1 is not trivial">;
1457 def note_nontrivial_objc_ownership : Note<
1458   "because type %0 has a member with %select{no|no|__strong|__weak|"
1459   "__autoreleasing}1 ownership">;
1460
1461 def err_static_data_member_not_allowed_in_anon_struct : Error<
1462   "static data member %0 not allowed in anonymous struct">;
1463 def ext_static_data_member_in_union : ExtWarn<
1464   "static data member %0 in union is a C++11 extension">, InGroup<CXX11>;
1465 def warn_cxx98_compat_static_data_member_in_union : Warning<
1466   "static data member %0 in union is incompatible with C++98">,
1467   InGroup<CXX98Compat>, DefaultIgnore;
1468 def ext_union_member_of_reference_type : ExtWarn<
1469   "union member %0 has reference type %1, which is a Microsoft extension">,
1470   InGroup<MicrosoftUnionMemberReference>;
1471 def err_union_member_of_reference_type : Error<
1472   "union member %0 has reference type %1">;
1473 def ext_anonymous_struct_union_qualified : Extension<
1474   "anonymous %select{struct|union}0 cannot be '%1'">;
1475 def err_different_return_type_for_overriding_virtual_function : Error<
1476   "virtual function %0 has a different return type "
1477   "%diff{($) than the function it overrides (which has return type $)|"
1478   "than the function it overrides}1,2">;
1479 def note_overridden_virtual_function : Note<
1480   "overridden virtual function is here">;
1481 def err_conflicting_overriding_cc_attributes : Error<
1482   "virtual function %0 has different calling convention attributes "
1483   "%diff{($) than the function it overrides (which has calling convention $)|"
1484   "than the function it overrides}1,2">;
1485
1486 def err_covariant_return_inaccessible_base : Error<
1487   "invalid covariant return for virtual function: %1 is a "
1488   "%select{private|protected}2 base class of %0">, AccessControl;
1489 def err_covariant_return_ambiguous_derived_to_base_conv : Error<
1490   "return type of virtual function %3 is not covariant with the return type of "
1491   "the function it overrides (ambiguous conversion from derived class "
1492   "%0 to base class %1:%2)">;
1493 def err_covariant_return_not_derived : Error<
1494   "return type of virtual function %0 is not covariant with the return type of "
1495   "the function it overrides (%1 is not derived from %2)">;
1496 def err_covariant_return_incomplete : Error<
1497   "return type of virtual function %0 is not covariant with the return type of "
1498   "the function it overrides (%1 is incomplete)">;
1499 def err_covariant_return_type_different_qualifications : Error<
1500   "return type of virtual function %0 is not covariant with the return type of "
1501   "the function it overrides (%1 has different qualifiers than %2)">;
1502 def err_covariant_return_type_class_type_more_qualified : Error<
1503   "return type of virtual function %0 is not covariant with the return type of "
1504   "the function it overrides (class type %1 is more qualified than class "
1505   "type %2">;
1506   
1507 // C++ constructors
1508 def err_constructor_cannot_be : Error<"constructor cannot be declared '%0'">;
1509 def err_invalid_qualified_constructor : Error<
1510   "'%0' qualifier is not allowed on a constructor">;
1511 def err_ref_qualifier_constructor : Error<
1512   "ref-qualifier '%select{&&|&}0' is not allowed on a constructor">;
1513
1514 def err_constructor_return_type : Error<
1515   "constructor cannot have a return type">;
1516 def err_constructor_redeclared : Error<"constructor cannot be redeclared">;
1517 def err_constructor_byvalue_arg : Error<
1518   "copy constructor must pass its first argument by reference">;
1519 def warn_no_constructor_for_refconst : Warning<
1520   "%select{struct|interface|union|class|enum}0 %1 does not declare any "
1521   "constructor to initialize its non-modifiable members">;
1522 def note_refconst_member_not_initialized : Note<
1523   "%select{const|reference}0 member %1 will never be initialized">;
1524 def ext_ms_explicit_constructor_call : ExtWarn<
1525   "explicit constructor calls are a Microsoft extension">,
1526   InGroup<MicrosoftExplicitConstructorCall>;
1527
1528 // C++ destructors
1529 def err_destructor_not_member : Error<
1530   "destructor must be a non-static member function">;
1531 def err_destructor_cannot_be : Error<"destructor cannot be declared '%0'">;
1532 def err_invalid_qualified_destructor : Error<
1533   "'%0' qualifier is not allowed on a destructor">;
1534 def err_ref_qualifier_destructor : Error<
1535   "ref-qualifier '%select{&&|&}0' is not allowed on a destructor">;
1536 def err_destructor_return_type : Error<"destructor cannot have a return type">;
1537 def err_destructor_redeclared : Error<"destructor cannot be redeclared">;
1538 def err_destructor_with_params : Error<"destructor cannot have any parameters">;
1539 def err_destructor_variadic : Error<"destructor cannot be variadic">;
1540 def err_destructor_typedef_name : Error<
1541   "destructor cannot be declared using a %select{typedef|type alias}1 %0 of the class name">;
1542 def err_destructor_name : Error<
1543   "expected the class name after '~' to name the enclosing class">;
1544 def err_destructor_class_name : Error<
1545   "expected the class name after '~' to name a destructor">;
1546 def err_ident_in_dtor_not_a_type : Error<
1547   "identifier %0 in object destruction expression does not name a type">;
1548 def err_destructor_expr_type_mismatch : Error<
1549   "destructor type %0 in object destruction expression does not match the "
1550   "type %1 of the object being destroyed">;
1551 def note_destructor_type_here : Note<
1552   "type %0 is declared here">;
1553
1554 def err_destructor_template : Error<
1555   "destructor cannot be declared as a template">;
1556
1557 // C++ initialization
1558 def err_init_conversion_failed : Error<
1559   "cannot initialize %select{a variable|a parameter|return object|an "
1560   "exception object|a member subobject|an array element|a new value|a value|a "
1561   "base class|a constructor delegation|a vector element|a block element|a "
1562   "complex element|a lambda capture|a compound literal initializer|a "
1563   "related result|a parameter of CF audited function}0 "
1564   "%diff{of type $ with an %select{rvalue|lvalue}2 of type $|"
1565   "with an %select{rvalue|lvalue}2 of incompatible type}1,3"
1566   "%select{|: different classes%diff{ ($ vs $)|}5,6"
1567   "|: different number of parameters (%5 vs %6)"
1568   "|: type mismatch at %ordinal5 parameter%diff{ ($ vs $)|}6,7"
1569   "|: different return type%diff{ ($ vs $)|}5,6"
1570   "|: different qualifiers ("
1571   "%select{none|const|restrict|const and restrict|volatile|const and volatile|"
1572   "volatile and restrict|const, volatile, and restrict}5 vs "
1573   "%select{none|const|restrict|const and restrict|volatile|const and volatile|"
1574   "volatile and restrict|const, volatile, and restrict}6)}4">;
1575
1576 def err_lvalue_to_rvalue_ref : Error<"rvalue reference %diff{to type $ cannot "
1577   "bind to lvalue of type $|cannot bind to incompatible lvalue}0,1">;
1578 def err_lvalue_reference_bind_to_initlist : Error<
1579   "%select{non-const|volatile}0 lvalue reference to type %1 cannot bind to an "
1580   "initializer list temporary">;
1581 def err_lvalue_reference_bind_to_temporary : Error<
1582   "%select{non-const|volatile}0 lvalue reference %diff{to type $ cannot bind "
1583   "to a temporary of type $|cannot bind to incompatible temporary}1,2">;
1584 def err_lvalue_reference_bind_to_unrelated : Error<
1585   "%select{non-const|volatile}0 lvalue reference "
1586   "%diff{to type $ cannot bind to a value of unrelated type $|"
1587   "cannot bind to a value of unrelated type}1,2">;
1588 def err_reference_bind_drops_quals : Error<
1589   "binding value %diff{of type $ to reference to type $|to reference}0,1 "
1590   "drops %select{<<ERROR>>|'const'|'restrict'|'const' and 'restrict'|"
1591   "'volatile'|'const' and 'volatile'|'restrict' and 'volatile'|"
1592   "'const', 'restrict', and 'volatile'}2 qualifier%plural{1:|2:|4:|:s}2">;
1593 def err_reference_bind_failed : Error<
1594   "reference %diff{to type $ could not bind to an %select{rvalue|lvalue}1 of "
1595   "type $|could not bind to %select{rvalue|lvalue}1 of incompatible type}0,2">;
1596 def err_reference_bind_init_list : Error<
1597   "reference to type %0 cannot bind to an initializer list">;
1598 def warn_temporary_array_to_pointer_decay : Warning<
1599   "pointer is initialized by a temporary array, which will be destroyed at the "
1600   "end of the full-expression">,
1601   InGroup<DiagGroup<"address-of-array-temporary">>;
1602 def err_init_list_bad_dest_type : Error<
1603   "%select{|non-aggregate }0type %1 cannot be initialized with an initializer "
1604   "list">;
1605 def err_member_function_call_bad_cvr : Error<"member function %0 not viable: "
1606     "'this' argument has type %1, but function is not marked "
1607     "%select{const|restrict|const or restrict|volatile|const or volatile|"
1608     "volatile or restrict|const, volatile, or restrict}2">;
1609
1610 def err_reference_bind_to_bitfield : Error<
1611   "%select{non-const|volatile}0 reference cannot bind to "
1612   "bit-field%select{| %1}2">;
1613 def err_reference_bind_to_vector_element : Error<
1614   "%select{non-const|volatile}0 reference cannot bind to vector element">;
1615 def err_reference_var_requires_init : Error<
1616   "declaration of reference variable %0 requires an initializer">;
1617 def err_reference_without_init : Error<
1618   "reference to type %0 requires an initializer">;
1619 def note_value_initialization_here : Note<
1620   "in value-initialization of type %0 here">;
1621 def err_reference_has_multiple_inits : Error<
1622   "reference cannot be initialized with multiple values">;
1623 def err_init_non_aggr_init_list : Error<
1624   "initialization of non-aggregate type %0 with an initializer list">;
1625 def err_init_reference_member_uninitialized : Error<
1626   "reference member of type %0 uninitialized">;
1627 def note_uninit_reference_member : Note<
1628   "uninitialized reference member is here">;
1629 def warn_field_is_uninit : Warning<"field %0 is uninitialized when used here">,
1630   InGroup<Uninitialized>;
1631 def warn_base_class_is_uninit : Warning<
1632   "base class %0 is uninitialized when used here to access %q1">,
1633   InGroup<Uninitialized>;
1634 def warn_reference_field_is_uninit : Warning<
1635   "reference %0 is not yet bound to a value when used here">,
1636   InGroup<Uninitialized>;
1637 def note_uninit_in_this_constructor : Note<
1638   "during field initialization in %select{this|the implicit default}0 "
1639   "constructor">;
1640 def warn_static_self_reference_in_init : Warning<
1641   "static variable %0 is suspiciously used within its own initialization">,
1642   InGroup<UninitializedStaticSelfInit>;
1643 def warn_uninit_self_reference_in_init : Warning<
1644   "variable %0 is uninitialized when used within its own initialization">,
1645   InGroup<Uninitialized>;
1646 def warn_uninit_self_reference_in_reference_init : Warning<
1647   "reference %0 is not yet bound to a value when used within its own"
1648   " initialization">,
1649   InGroup<Uninitialized>;
1650 def warn_uninit_var : Warning<
1651   "variable %0 is uninitialized when %select{used here|captured by block}1">,
1652   InGroup<Uninitialized>, DefaultIgnore;
1653 def warn_sometimes_uninit_var : Warning<
1654   "variable %0 is %select{used|captured}1 uninitialized whenever "
1655   "%select{'%3' condition is %select{true|false}4|"
1656   "'%3' loop %select{is entered|exits because its condition is false}4|"
1657   "'%3' loop %select{condition is true|exits because its condition is false}4|"
1658   "switch %3 is taken|"
1659   "its declaration is reached|"
1660   "%3 is called}2">,
1661   InGroup<UninitializedSometimes>, DefaultIgnore;
1662 def warn_maybe_uninit_var : Warning<
1663   "variable %0 may be uninitialized when "
1664   "%select{used here|captured by block}1">,
1665   InGroup<UninitializedMaybe>, DefaultIgnore;
1666 def note_uninit_var_def : Note<"variable %0 is declared here">;
1667 def note_uninit_var_use : Note<
1668   "%select{uninitialized use occurs|variable is captured by block}0 here">;
1669 def warn_uninit_byref_blockvar_captured_by_block : Warning<
1670   "block pointer variable %0 is uninitialized when captured by block">,
1671   InGroup<Uninitialized>, DefaultIgnore;
1672 def note_block_var_fixit_add_initialization : Note<
1673   "did you mean to use __block %0?">;
1674 def note_in_omitted_aggregate_initializer : Note<
1675   "in implicit initialization of %select{array element %1|field %1}0 "
1676   "with omitted initializer">;
1677 def note_in_reference_temporary_list_initializer : Note<
1678   "in initialization of temporary of type %0 created to "
1679   "list-initialize this reference">;
1680 def note_var_fixit_add_initialization : Note<
1681   "initialize the variable %0 to silence this warning">;
1682 def note_uninit_fixit_remove_cond : Note<
1683   "remove the %select{'%1' if its condition|condition if it}0 "
1684   "is always %select{false|true}2">;
1685 def err_init_incomplete_type : Error<"initialization of incomplete type %0">;
1686
1687 def warn_unsequenced_mod_mod : Warning<
1688   "multiple unsequenced modifications to %0">, InGroup<Unsequenced>;
1689 def warn_unsequenced_mod_use : Warning<
1690   "unsequenced modification and access to %0">, InGroup<Unsequenced>;
1691
1692 def err_temp_copy_no_viable : Error<
1693   "no viable constructor %select{copying variable|copying parameter|"
1694   "returning object|throwing object|copying member subobject|copying array "
1695   "element|allocating object|copying temporary|initializing base subobject|"
1696   "initializing vector element|capturing value}0 of type %1">;
1697 def ext_rvalue_to_reference_temp_copy_no_viable : Extension<
1698   "no viable constructor %select{copying variable|copying parameter|"
1699   "returning object|throwing object|copying member subobject|copying array "
1700   "element|allocating object|copying temporary|initializing base subobject|"
1701   "initializing vector element|capturing value}0 of type %1; C++98 requires a copy "
1702   "constructor when binding a reference to a temporary">,
1703   InGroup<BindToTemporaryCopy>;
1704 def err_temp_copy_ambiguous : Error<
1705   "ambiguous constructor call when %select{copying variable|copying "
1706   "parameter|returning object|throwing object|copying member subobject|copying "
1707   "array element|allocating object|copying temporary|initializing base subobject|"
1708   "initializing vector element|capturing value}0 of type %1">;
1709 def err_temp_copy_deleted : Error<
1710   "%select{copying variable|copying parameter|returning object|throwing "
1711   "object|copying member subobject|copying array element|allocating object|"
1712   "copying temporary|initializing base subobject|initializing vector element|"
1713   "capturing value}0 of type %1 invokes deleted constructor">;
1714 def err_temp_copy_incomplete : Error<
1715   "copying a temporary object of incomplete type %0">;
1716 def warn_cxx98_compat_temp_copy : Warning<
1717   "%select{copying variable|copying parameter|returning object|throwing "
1718   "object|copying member subobject|copying array element|allocating object|"
1719   "copying temporary|initializing base subobject|initializing vector element}1 "
1720   "of type %2 when binding a reference to a temporary would %select{invoke "
1721   "an inaccessible constructor|find no viable constructor|find ambiguous "
1722   "constructors|invoke a deleted constructor}0 in C++98">,
1723   InGroup<CXX98CompatBindToTemporaryCopy>, DefaultIgnore;
1724 def err_selected_explicit_constructor : Error<
1725   "chosen constructor is explicit in copy-initialization">;
1726 def note_constructor_declared_here : Note<
1727   "constructor declared here">;
1728
1729 // C++11 decltype
1730 def err_decltype_in_declarator : Error<
1731     "'decltype' cannot be used to name a declaration">;
1732     
1733 // C++11 auto
1734 def warn_cxx98_compat_auto_type_specifier : Warning<
1735   "'auto' type specifier is incompatible with C++98">,
1736   InGroup<CXX98Compat>, DefaultIgnore;
1737 def err_auto_variable_cannot_appear_in_own_initializer : Error<
1738   "variable %0 declared with %select{'auto'|'decltype(auto)'|'__auto_type'}1 "
1739   "type cannot appear in its own initializer">;
1740 def err_illegal_decl_array_of_auto : Error<
1741   "'%0' declared as array of %1">;
1742 def err_new_array_of_auto : Error<
1743   "cannot allocate array of 'auto'">;
1744 def err_auto_not_allowed : Error<
1745   "%select{'auto'|'decltype(auto)'|'__auto_type'}0 not allowed "
1746   "%select{in function prototype"
1747   "|in non-static struct member|in struct member"
1748   "|in non-static union member|in union member"
1749   "|in non-static class member|in interface member"
1750   "|in exception declaration|in template parameter|in block literal"
1751   "|in template argument|in typedef|in type alias|in function return type"
1752   "|in conversion function type|here|in lambda parameter"
1753   "|in type allocated by 'new'|in K&R-style function parameter}1">;
1754 def err_auto_not_allowed_var_inst : Error<
1755   "'auto' variable template instantiation is not allowed">;
1756 def err_auto_var_requires_init : Error<
1757   "declaration of variable %0 with type %1 requires an initializer">;
1758 def err_auto_new_requires_ctor_arg : Error<
1759   "new expression for type %0 requires a constructor argument">;
1760 def err_auto_new_list_init : Error<
1761   "new expression for type %0 cannot use list-initialization">;
1762 def err_auto_var_init_no_expression : Error<
1763   "initializer for variable %0 with type %1 is empty">;
1764 def err_auto_var_init_multiple_expressions : Error<
1765   "initializer for variable %0 with type %1 contains multiple expressions">;
1766 def err_auto_var_init_paren_braces : Error<
1767   "cannot deduce type for variable %1 with type %2 from "
1768   "%select{parenthesized|nested}0 initializer list">;
1769 def err_auto_new_ctor_multiple_expressions : Error<
1770   "new expression for type %0 contains multiple constructor arguments">;
1771 def err_auto_missing_trailing_return : Error<
1772   "'auto' return without trailing return type; deduced return types are a "
1773   "C++14 extension">;
1774 def err_deduced_return_type : Error<
1775   "deduced return types are a C++14 extension">;
1776 def err_trailing_return_without_auto : Error<
1777   "function with trailing return type must specify return type 'auto', not %0">;
1778 def err_trailing_return_in_parens : Error<
1779   "trailing return type may not be nested within parentheses">;
1780 def err_auto_var_deduction_failure : Error<
1781   "variable %0 with type %1 has incompatible initializer of type %2">;
1782 def err_auto_var_deduction_failure_from_init_list : Error<
1783   "cannot deduce actual type for variable %0 with type %1 from initializer list">;
1784 def err_auto_new_deduction_failure : Error<
1785   "new expression for type %0 has incompatible constructor argument of type %1">;
1786 def err_auto_different_deductions : Error<
1787   "'%select{auto|decltype(auto)|__auto_type}0' deduced as %1 in declaration "
1788   "of %2 and deduced as %3 in declaration of %4">;
1789 def err_implied_std_initializer_list_not_found : Error<
1790   "cannot deduce type of initializer list because std::initializer_list was "
1791   "not found; include <initializer_list>">;
1792 def err_malformed_std_initializer_list : Error<
1793   "std::initializer_list must be a class template with a single type parameter">;
1794 def warn_dangling_std_initializer_list : Warning<
1795   "array backing the initializer list will be destroyed at the end of "
1796   "%select{the full-expression|the constructor}0">,
1797   InGroup<DiagGroup<"dangling-initializer-list">>;
1798 def err_auto_init_list_from_c : Error<
1799   "cannot use __auto_type with initializer list in C">;
1800 def err_auto_bitfield : Error<
1801   "cannot pass bit-field as __auto_type initializer in C">;
1802
1803 // C++1y decltype(auto) type
1804 def err_decltype_auto_cannot_be_combined : Error<
1805   "'decltype(auto)' cannot be combined with other type specifiers">;
1806 def err_decltype_auto_function_declarator_not_declaration : Error<
1807   "'decltype(auto)' can only be used as a return type "
1808   "in a function declaration">;
1809 def err_decltype_auto_compound_type : Error<
1810   "cannot form %select{pointer to|reference to|array of}0 'decltype(auto)'">;
1811 def err_decltype_auto_initializer_list : Error<
1812   "cannot deduce 'decltype(auto)' from initializer list">;
1813
1814 // C++1y deduced return types
1815 def err_auto_fn_deduction_failure : Error<
1816   "cannot deduce return type %0 from returned value of type %1">;
1817 def err_auto_fn_different_deductions : Error<
1818   "'%select{auto|decltype(auto)}0' in return type deduced as %1 here but "
1819   "deduced as %2 in earlier return statement">;
1820 def err_auto_fn_used_before_defined : Error<
1821   "function %0 with deduced return type cannot be used before it is defined">;
1822 def err_auto_fn_no_return_but_not_auto : Error<
1823   "cannot deduce return type %0 for function with no return statements">;
1824 def err_auto_fn_return_void_but_not_auto : Error<
1825   "cannot deduce return type %0 from omitted return expression">;
1826 def err_auto_fn_return_init_list : Error<
1827   "cannot deduce return type from initializer list">;
1828 def err_auto_fn_virtual : Error<
1829   "function with deduced return type cannot be virtual">;
1830
1831 // C++11 override control
1832 def override_keyword_only_allowed_on_virtual_member_functions : Error<
1833   "only virtual member functions can be marked '%0'">;
1834 def override_keyword_hides_virtual_member_function : Error<
1835   "non-virtual member function marked '%0' hides virtual member "
1836   "%select{function|functions}1">;
1837 def err_function_marked_override_not_overriding : Error<
1838   "%0 marked 'override' but does not override any member functions">;
1839 def warn_function_marked_not_override_overriding : Warning <
1840   "%0 overrides a member function but is not marked 'override'">,
1841   InGroup<CXX11WarnOverrideMethod>;
1842 def err_class_marked_final_used_as_base : Error<
1843   "base %0 is marked '%select{final|sealed}1'">;
1844 def warn_abstract_final_class : Warning<
1845   "abstract class is marked '%select{final|sealed}0'">, InGroup<AbstractFinalClass>;
1846
1847 // C++11 attributes
1848 def err_repeat_attribute : Error<"%0 attribute cannot be repeated">;
1849
1850 // C++11 final
1851 def err_final_function_overridden : Error<
1852   "declaration of %0 overrides a '%select{final|sealed}1' function">;
1853
1854 // C++11 scoped enumerations
1855 def err_enum_invalid_underlying : Error<
1856   "non-integral type %0 is an invalid underlying type">;
1857 def err_enumerator_too_large : Error<
1858   "enumerator value is not representable in the underlying type %0">;
1859 def ext_enumerator_too_large : ExtWarn<
1860   "enumerator value is not representable in the underlying type %0">,
1861   InGroup<MicrosoftEnumValue>;
1862 def err_enumerator_wrapped : Error<
1863   "enumerator value %0 is not representable in the underlying type %1">;
1864 def err_enum_redeclare_type_mismatch : Error<
1865   "enumeration redeclared with different underlying type %0 (was %1)">;
1866 def err_enum_redeclare_fixed_mismatch : Error<
1867   "enumeration previously declared with %select{non|}0fixed underlying type">;
1868 def err_enum_redeclare_scoped_mismatch : Error<
1869   "enumeration previously declared as %select{un|}0scoped">;
1870 def err_enum_class_reference : Error<
1871   "reference to %select{|scoped }0enumeration must use 'enum' "
1872   "not 'enum class'">;
1873 def err_only_enums_have_underlying_types : Error<
1874   "only enumeration types have underlying types">;
1875 def err_underlying_type_of_incomplete_enum : Error<
1876   "cannot determine underlying type of incomplete enumeration type %0">;
1877
1878 // C++11 delegating constructors
1879 def err_delegating_ctor : Error<
1880   "delegating constructors are permitted only in C++11">;
1881 def warn_cxx98_compat_delegating_ctor : Warning<
1882   "delegating constructors are incompatible with C++98">,
1883   InGroup<CXX98Compat>, DefaultIgnore;
1884 def err_delegating_initializer_alone : Error<
1885   "an initializer for a delegating constructor must appear alone">;
1886 def warn_delegating_ctor_cycle : Warning<
1887   "constructor for %0 creates a delegation cycle">, DefaultError,
1888   InGroup<DelegatingCtorCycles>;
1889 def note_it_delegates_to : Note<"it delegates to">;
1890 def note_which_delegates_to : Note<"which delegates to">;
1891
1892 // C++11 range-based for loop
1893 def err_for_range_decl_must_be_var : Error<
1894   "for range declaration must declare a variable">;
1895 def err_for_range_storage_class : Error<
1896   "loop variable %0 may not be declared %select{'extern'|'static'|"
1897   "'__private_extern__'|'auto'|'register'|'constexpr'}1">;
1898 def err_type_defined_in_for_range : Error<
1899   "types may not be defined in a for range declaration">;
1900 def err_for_range_deduction_failure : Error<
1901   "cannot use type %0 as a range">;
1902 def err_for_range_incomplete_type : Error<
1903   "cannot use incomplete type %0 as a range">;
1904 def err_for_range_iter_deduction_failure : Error<
1905   "cannot use type %0 as an iterator">;
1906 def err_for_range_member_begin_end_mismatch : Error<
1907   "range type %0 has '%select{begin|end}1' member but no '%select{end|begin}1' member">;
1908 def err_for_range_begin_end_types_differ : Error<
1909   "'begin' and 'end' must return the same type (got %0 and %1)">;
1910 def note_in_for_range: Note<
1911   "when looking up '%select{begin|end}0' function for range expression "
1912   "of type %1">;
1913 def err_for_range_invalid: Error<
1914   "invalid range expression of type %0; no viable '%select{begin|end}1' "
1915   "function available">;
1916 def err_range_on_array_parameter : Error<
1917   "cannot build range expression with array function parameter %0 since "
1918   "parameter with array type %1 is treated as pointer type %2">;
1919 def err_for_range_dereference : Error<
1920   "invalid range expression of type %0; did you mean to dereference it "
1921   "with '*'?">;
1922 def note_for_range_invalid_iterator : Note <
1923   "in implicit call to 'operator%select{!=|*|++}0' for iterator of type %1">;
1924 def note_for_range_begin_end : Note<
1925   "selected '%select{begin|end}0' %select{function|template }1%2 with iterator type %3">;
1926
1927 // C++11 constexpr
1928 def warn_cxx98_compat_constexpr : Warning<
1929   "'constexpr' specifier is incompatible with C++98">,
1930   InGroup<CXX98Compat>, DefaultIgnore;
1931 // FIXME: Maybe this should also go in -Wc++14-compat?
1932 def warn_cxx14_compat_constexpr_not_const : Warning<
1933   "'constexpr' non-static member function will not be implicitly 'const' "
1934   "in C++14; add 'const' to avoid a change in behavior">,
1935   InGroup<DiagGroup<"constexpr-not-const">>;
1936 def err_invalid_constexpr : Error<
1937   "%select{function parameter|typedef|non-static data member}0 "
1938   "cannot be constexpr">;
1939 def err_invalid_constexpr_member : Error<"non-static data member cannot be "
1940   "constexpr%select{; did you intend to make it %select{const|static}0?|}1">;
1941 def err_constexpr_tag : Error<
1942   "%select{class|struct|interface|union|enum}0 cannot be marked constexpr">;
1943 def err_constexpr_dtor : Error<"destructor cannot be marked constexpr">;
1944 def err_constexpr_no_declarators : Error<
1945   "constexpr can only be used in variable and function declarations">;
1946 def err_invalid_constexpr_var_decl : Error<
1947   "constexpr variable declaration must be a definition">;
1948 def err_constexpr_static_mem_var_requires_init : Error<
1949   "declaration of constexpr static data member %0 requires an initializer">;
1950 def err_constexpr_var_non_literal : Error<
1951   "constexpr variable cannot have non-literal type %0">;
1952 def err_constexpr_var_requires_const_init : Error<
1953   "constexpr variable %0 must be initialized by a constant expression">;
1954 def err_constexpr_redecl_mismatch : Error<
1955   "%select{non-constexpr declaration of %0 follows constexpr declaration"
1956   "|constexpr declaration of %0 follows non-constexpr declaration}1">;
1957 def err_constexpr_virtual : Error<"virtual function cannot be constexpr">;
1958 def err_constexpr_virtual_base : Error<
1959   "constexpr %select{member function|constructor}0 not allowed in "
1960   "%select{struct|interface|class}1 with virtual base "
1961   "%plural{1:class|:classes}2">;
1962 def note_non_literal_incomplete : Note<
1963   "incomplete type %0 is not a literal type">;
1964 def note_non_literal_virtual_base : Note<"%select{struct|interface|class}0 "
1965   "with virtual base %plural{1:class|:classes}1 is not a literal type">;
1966 def note_constexpr_virtual_base_here : Note<"virtual base class declared here">;
1967 def err_constexpr_non_literal_return : Error<
1968   "constexpr function's return type %0 is not a literal type">;
1969 def err_constexpr_non_literal_param : Error<
1970   "constexpr %select{function|constructor}1's %ordinal0 parameter type %2 is "
1971   "not a literal type">;
1972 def err_constexpr_body_invalid_stmt : Error<
1973   "statement not allowed in constexpr %select{function|constructor}0">;
1974 def ext_constexpr_body_invalid_stmt : ExtWarn<
1975   "use of this statement in a constexpr %select{function|constructor}0 "
1976   "is a C++14 extension">, InGroup<CXX14>;
1977 def warn_cxx11_compat_constexpr_body_invalid_stmt : Warning<
1978   "use of this statement in a constexpr %select{function|constructor}0 "
1979   "is incompatible with C++ standards before C++14">,
1980   InGroup<CXXPre14Compat>, DefaultIgnore;
1981 def ext_constexpr_type_definition : ExtWarn<
1982   "type definition in a constexpr %select{function|constructor}0 "
1983   "is a C++14 extension">, InGroup<CXX14>;
1984 def warn_cxx11_compat_constexpr_type_definition : Warning<
1985   "type definition in a constexpr %select{function|constructor}0 "
1986   "is incompatible with C++ standards before C++14">,
1987   InGroup<CXXPre14Compat>, DefaultIgnore;
1988 def err_constexpr_vla : Error<
1989   "variably-modified type %0 cannot be used in a constexpr "
1990   "%select{function|constructor}1">;
1991 def ext_constexpr_local_var : ExtWarn<
1992   "variable declaration in a constexpr %select{function|constructor}0 "
1993   "is a C++14 extension">, InGroup<CXX14>;
1994 def warn_cxx11_compat_constexpr_local_var : Warning<
1995   "variable declaration in a constexpr %select{function|constructor}0 "
1996   "is incompatible with C++ standards before C++14">,
1997   InGroup<CXXPre14Compat>, DefaultIgnore;
1998 def err_constexpr_local_var_static : Error<
1999   "%select{static|thread_local}1 variable not permitted in a constexpr "
2000   "%select{function|constructor}0">;
2001 def err_constexpr_local_var_non_literal_type : Error<
2002   "variable of non-literal type %1 cannot be defined in a constexpr "
2003   "%select{function|constructor}0">;
2004 def err_constexpr_local_var_no_init : Error<
2005   "variables defined in a constexpr %select{function|constructor}0 must be "
2006   "initialized">;
2007 def ext_constexpr_function_never_constant_expr : ExtWarn<
2008   "constexpr %select{function|constructor}0 never produces a "
2009   "constant expression">, InGroup<DiagGroup<"invalid-constexpr">>, DefaultError;
2010 def err_enable_if_never_constant_expr : Error<
2011   "'enable_if' attribute expression never produces a constant expression">;
2012 def err_constexpr_body_no_return : Error<
2013   "no return statement in constexpr function">;
2014 def err_constexpr_return_missing_expr : Error<
2015   "non-void constexpr function %0 should return a value">;
2016 def warn_cxx11_compat_constexpr_body_no_return : Warning<
2017   "constexpr function with no return statements is incompatible with C++ "
2018   "standards before C++14">, InGroup<CXXPre14Compat>, DefaultIgnore;
2019 def ext_constexpr_body_multiple_return : ExtWarn<
2020   "multiple return statements in constexpr function is a C++14 extension">,
2021   InGroup<CXX14>;
2022 def warn_cxx11_compat_constexpr_body_multiple_return : Warning<
2023   "multiple return statements in constexpr function "
2024   "is incompatible with C++ standards before C++14">,
2025   InGroup<CXXPre14Compat>, DefaultIgnore;
2026 def note_constexpr_body_previous_return : Note<
2027   "previous return statement is here">;
2028 def err_constexpr_function_try_block : Error<
2029   "function try block not allowed in constexpr %select{function|constructor}0">;
2030 def err_constexpr_union_ctor_no_init : Error<
2031   "constexpr union constructor does not initialize any member">;
2032 def err_constexpr_ctor_missing_init : Error<
2033   "constexpr constructor must initialize all members">;
2034 def note_constexpr_ctor_missing_init : Note<
2035   "member not initialized by constructor">;
2036 def note_non_literal_no_constexpr_ctors : Note<
2037   "%0 is not literal because it is not an aggregate and has no constexpr "
2038   "constructors other than copy or move constructors">;
2039 def note_non_literal_base_class : Note<
2040   "%0 is not literal because it has base class %1 of non-literal type">;
2041 def note_non_literal_field : Note<
2042   "%0 is not literal because it has data member %1 of "
2043   "%select{non-literal|volatile}3 type %2">;
2044 def note_non_literal_user_provided_dtor : Note<
2045   "%0 is not literal because it has a user-provided destructor">;
2046 def note_non_literal_nontrivial_dtor : Note<
2047   "%0 is not literal because it has a non-trivial destructor">;
2048 def warn_private_extern : Warning<
2049   "use of __private_extern__ on a declaration may not produce external symbol "
2050   "private to the linkage unit and is deprecated">, InGroup<PrivateExtern>;
2051 def note_private_extern : Note<
2052   "use __attribute__((visibility(\"hidden\"))) attribute instead">;
2053
2054 // C++ Concepts TS
2055 def err_concept_wrong_decl_kind : Error<
2056   "'concept' can only appear on the definition of a function template or variable template">;
2057 def err_concept_decls_may_only_appear_in_namespace_scope : Error<
2058   "concept declarations may only appear in namespace scope">;
2059 def err_function_concept_not_defined : Error<
2060   "function concept declaration must be a definition">;
2061 def err_var_concept_not_initialized : Error<
2062   "variable concept declaration must be initialized">;
2063 def err_function_concept_exception_spec : Error<
2064   "function concept cannot have exception specification">;
2065 def err_concept_decl_invalid_specifiers : Error<
2066   "%select{variable|function}0 concept cannot be declared "
2067   "'%select{thread_local|inline|friend|constexpr}1'">;
2068 def err_function_concept_with_params : Error<
2069   "function concept cannot have any parameters">;
2070
2071 // C++11 char16_t/char32_t
2072 def warn_cxx98_compat_unicode_type : Warning<
2073   "'%0' type specifier is incompatible with C++98">,
2074   InGroup<CXX98Compat>, DefaultIgnore;
2075
2076 // __make_integer_seq
2077 def err_integer_sequence_negative_length : Error<
2078   "integer sequences must have non-negative sequence length">;
2079 def err_integer_sequence_integral_element_type : Error<
2080   "integer sequences must have integral element type">;
2081
2082 // Objective-C++
2083 def err_objc_decls_may_only_appear_in_global_scope : Error<
2084   "Objective-C declarations may only appear in global scope">;
2085 def warn_auto_var_is_id : Warning<
2086   "'auto' deduced as 'id' in declaration of %0">,
2087   InGroup<DiagGroup<"auto-var-id">>;
2088
2089 // Attributes
2090 def err_nsobject_attribute : Error<
2091   "'NSObject' attribute is for pointer types only">;
2092 def err_attributes_are_not_compatible : Error<
2093   "%0 and %1 attributes are not compatible">;
2094 def err_attribute_wrong_number_arguments : Error<
2095   "%0 attribute %plural{0:takes no arguments|1:takes one argument|"
2096   ":requires exactly %1 arguments}1">;
2097 def err_attribute_too_many_arguments : Error<
2098   "%0 attribute takes no more than %1 argument%s1">;
2099 def err_attribute_too_few_arguments : Error<
2100   "%0 attribute takes at least %1 argument%s1">;
2101 def err_attribute_invalid_vector_type : Error<"invalid vector element type %0">;
2102 def err_attribute_bad_neon_vector_size : Error<
2103   "Neon vector size must be 64 or 128 bits">;
2104 def warn_unsupported_target_attribute
2105     : Warning<"Ignoring unsupported '%0' in the target attribute string">,
2106     InGroup<IgnoredAttributes>;
2107 def err_attribute_unsupported
2108     : Error<"%0 attribute is not supported for this target">;
2109 // The err_*_attribute_argument_not_int are seperate because they're used by
2110 // VerifyIntegerConstantExpression.
2111 def err_aligned_attribute_argument_not_int : Error<
2112   "'aligned' attribute requires integer constant">;
2113 def err_align_value_attribute_argument_not_int : Error<
2114   "'align_value' attribute requires integer constant">;
2115 def err_alignas_attribute_wrong_decl_type : Error<
2116   "%0 attribute cannot be applied to a %select{function parameter|"
2117   "variable with 'register' storage class|'catch' variable|bit-field}1">;
2118 def err_alignas_missing_on_definition : Error<
2119   "%0 must be specified on definition if it is specified on any declaration">;
2120 def note_alignas_on_declaration : Note<"declared with %0 attribute here">;
2121 def err_alignas_mismatch : Error<
2122   "redeclaration has different alignment requirement (%1 vs %0)">;
2123 def err_alignas_underaligned : Error<
2124   "requested alignment is less than minimum alignment of %1 for type %0">;
2125 def err_attribute_argument_n_type : Error<
2126   "%0 attribute requires parameter %1 to be %select{int or bool|an integer "
2127   "constant|a string|an identifier}2">;
2128 def err_attribute_argument_type : Error<
2129   "%0 attribute requires %select{int or bool|an integer "
2130   "constant|a string|an identifier}1">;
2131 def err_attribute_argument_outof_range : Error<
2132   "%0 attribute requires integer constant between %1 and %2 inclusive">;
2133 def err_init_priority_object_attr : Error<
2134   "can only use 'init_priority' attribute on file-scope definitions "
2135   "of objects of class type">;
2136 def err_attribute_argument_vec_type_hint : Error<
2137   "invalid attribute argument %0 - expecting a vector or vectorizable scalar type">;
2138 def err_attribute_argument_out_of_bounds : Error<
2139   "%0 attribute parameter %1 is out of bounds">;
2140 def err_attribute_only_once_per_parameter : Error<
2141   "%0 attribute can only be applied once per parameter">;
2142 def err_attribute_uuid_malformed_guid : Error<
2143   "uuid attribute contains a malformed GUID">;
2144 def warn_attribute_pointers_only : Warning<
2145   "%0 attribute only applies to%select{| constant}1 pointer arguments">,
2146   InGroup<IgnoredAttributes>;
2147 def err_attribute_pointers_only : Error<warn_attribute_pointers_only.Text>;
2148 def warn_attribute_return_pointers_only : Warning<
2149   "%0 attribute only applies to return values that are pointers">,
2150   InGroup<IgnoredAttributes>;
2151 def warn_attribute_return_pointers_refs_only : Warning<
2152   "%0 attribute only applies to return values that are pointers or references">,
2153   InGroup<IgnoredAttributes>;
2154 def warn_attribute_pointer_or_reference_only : Warning<
2155   "%0 attribute only applies to a pointer or reference (%1 is invalid)">,
2156   InGroup<IgnoredAttributes>;
2157 def err_attribute_no_member_pointers : Error<
2158   "%0 attribute cannot be used with pointers to members">;
2159 def err_attribute_invalid_implicit_this_argument : Error<
2160   "%0 attribute is invalid for the implicit this argument">;
2161 def err_ownership_type : Error<
2162   "%0 attribute only applies to %select{pointer|integer}1 arguments">;
2163 def err_ownership_returns_index_mismatch : Error<
2164   "'ownership_returns' attribute index does not match; here it is %0">;
2165 def note_ownership_returns_index_mismatch : Note<
2166   "declared with index %0 here">;
2167 def err_format_strftime_third_parameter : Error<
2168   "strftime format attribute requires 3rd parameter to be 0">;
2169 def err_format_attribute_requires_variadic : Error<
2170   "format attribute requires variadic function">;
2171 def err_format_attribute_not : Error<"format argument not %0">;
2172 def err_format_attribute_result_not : Error<"function does not return %0">;
2173 def err_format_attribute_implicit_this_format_string : Error<
2174   "format attribute cannot specify the implicit this argument as the format "
2175   "string">;
2176 def err_init_method_bad_return_type : Error<
2177   "init methods must return an object pointer type, not %0">;
2178 def err_attribute_invalid_size : Error<
2179   "vector size not an integral multiple of component size">;
2180 def err_attribute_zero_size : Error<"zero vector size">;
2181 def err_attribute_size_too_large : Error<"vector size too large">;
2182 def err_typecheck_vector_not_convertable : Error<
2183   "cannot convert between vector values of different size (%0 and %1)">;
2184 def err_typecheck_vector_not_convertable_non_scalar : Error<
2185   "cannot convert between vector and non-scalar values (%0 and %1)">;
2186 def err_typecheck_vector_lengths_not_equal : Error<
2187   "vector operands do not have the same number of elements (%0 and %1)">;
2188 def err_ext_vector_component_exceeds_length : Error<
2189   "vector component access exceeds type %0">;
2190 def err_ext_vector_component_name_illegal : Error<
2191   "illegal vector component name '%0'">;
2192 def err_attribute_address_space_negative : Error<
2193   "address space is negative">;
2194 def err_attribute_address_space_too_high : Error<
2195   "address space is larger than the maximum supported (%0)">;
2196 def err_attribute_address_multiple_qualifiers : Error<
2197   "multiple address spaces specified for type">;
2198 def err_attribute_address_function_type : Error<
2199   "function type may not be qualified with an address space">;
2200 def err_as_qualified_auto_decl : Error<
2201   "automatic variable qualified with an address space">;
2202 def err_arg_with_address_space : Error<
2203   "parameter may not be qualified with an address space">;
2204 def err_field_with_address_space : Error<
2205   "field may not be qualified with an address space">;
2206 def err_attr_objc_ownership_redundant : Error<
2207   "the type %0 is already explicitly ownership-qualified">;
2208 def err_invalid_nsnumber_type : Error<
2209   "%0 is not a valid literal type for NSNumber">;
2210 def err_objc_illegal_boxed_expression_type : Error<
2211   "illegal type %0 used in a boxed expression">;
2212 def err_objc_non_trivially_copyable_boxed_expression_type : Error<
2213   "non-trivially copyable type %0 cannot be used in a boxed expression">;
2214 def err_objc_incomplete_boxed_expression_type : Error<
2215   "incomplete type %0 used in a boxed expression">;
2216 def err_undeclared_objc_literal_class : Error<
2217   "definition of class %0 must be available to use Objective-C "
2218   "%select{array literals|dictionary literals|numeric literals|boxed expressions|"
2219   "string literals}1">;
2220 def err_undeclared_boxing_method : Error<
2221   "declaration of %0 is missing in %1 class">;
2222 def err_objc_literal_method_sig : Error<
2223   "literal construction method %0 has incompatible signature">;
2224 def note_objc_literal_method_param : Note<
2225   "%select{first|second|third}0 parameter has unexpected type %1 "
2226   "(should be %2)">;
2227 def note_objc_literal_method_return : Note<
2228   "method returns unexpected type %0 (should be an object type)">;
2229 def err_invalid_collection_element : Error<
2230   "collection element of type %0 is not an Objective-C object">;
2231 def err_box_literal_collection : Error<
2232   "%select{string|character|boolean|numeric}0 literal must be prefixed by '@' "
2233   "in a collection">;
2234 def warn_objc_literal_comparison : Warning<
2235   "direct comparison of %select{an array literal|a dictionary literal|"
2236   "a numeric literal|a boxed expression|}0 has undefined behavior">,
2237   InGroup<ObjCLiteralComparison>;
2238 def err_missing_atsign_prefix : Error<
2239   "string literal must be prefixed by '@' ">;
2240 def warn_objc_string_literal_comparison : Warning<
2241   "direct comparison of a string literal has undefined behavior">, 
2242   InGroup<ObjCStringComparison>;
2243 def warn_concatenated_nsarray_literal : Warning<
2244   "concatenated NSString literal for an NSArray expression - "
2245   "possibly missing a comma">,
2246   InGroup<ObjCStringConcatenation>;
2247 def note_objc_literal_comparison_isequal : Note<
2248   "use 'isEqual:' instead">;
2249 def warn_objc_collection_literal_element : Warning<
2250   "object of type %0 is not compatible with "
2251   "%select{array element type|dictionary key type|dictionary value type}1 %2">,
2252   InGroup<ObjCLiteralConversion>;
2253
2254 def err_attribute_argument_is_zero : Error<
2255   "%0 attribute must be greater than 0">;
2256 def warn_attribute_argument_n_negative : Warning<
2257   "%0 attribute parameter %1 is negative and will be ignored">,
2258   InGroup<CudaCompat>;
2259 def err_property_function_in_objc_container : Error<
2260   "use of Objective-C property in function nested in Objective-C "
2261   "container not supported, move function outside its container">;
2262
2263 let CategoryName = "Cocoa API Issue" in {
2264 def warn_objc_redundant_literal_use : Warning<
2265   "using %0 with a literal is redundant">, InGroup<ObjCRedundantLiteralUse>;
2266 }
2267
2268 def err_attr_tlsmodel_arg : Error<"tls_model must be \"global-dynamic\", "
2269   "\"local-dynamic\", \"initial-exec\" or \"local-exec\"">;
2270
2271 def err_tls_var_aligned_over_maximum : Error<
2272   "alignment (%0) of thread-local variable %1 is greater than the maximum supported "
2273   "alignment (%2) for a thread-local variable on this target">;
2274
2275 def err_only_annotate_after_access_spec : Error<
2276   "access specifier can only have annotation attributes">;
2277
2278 def err_attribute_section_invalid_for_target : Error<
2279   "argument to 'section' attribute is not valid for this target: %0">;
2280 def warn_mismatched_section : Warning<
2281   "section does not match previous declaration">, InGroup<Section>;
2282
2283 def err_anonymous_property: Error<
2284   "anonymous property is not supported">;
2285 def err_property_is_variably_modified : Error<
2286   "property %0 has a variably modified type">;
2287 def err_no_accessor_for_property : Error<
2288   "no %select{getter|setter}0 defined for property %1">;
2289 def error_cannot_find_suitable_accessor : Error<
2290   "cannot find suitable %select{getter|setter}0 for property %1">;
2291
2292 def err_alignment_not_power_of_two : Error<
2293   "requested alignment is not a power of 2">;
2294 def err_alignment_dependent_typedef_name : Error<
2295   "requested alignment is dependent but declaration is not dependent">;
2296
2297 def err_attribute_aligned_too_great : Error<
2298   "requested alignment must be %0 bytes or smaller">;
2299 def warn_redeclaration_without_attribute_prev_attribute_ignored : Warning<
2300   "%q0 redeclared without %1 attribute: previous %1 ignored">,
2301   InGroup<DiagGroup<"inconsistent-dllimport">>;
2302 def warn_dllimport_dropped_from_inline_function : Warning<
2303   "%q0 redeclared inline; %1 attribute ignored">,
2304   InGroup<IgnoredAttributes>;
2305 def warn_attribute_ignored : Warning<"%0 attribute ignored">,
2306   InGroup<IgnoredAttributes>;
2307 def warn_attribute_ignored_on_inline :
2308   Warning<"%0 attribute ignored on inline function">,
2309   InGroup<IgnoredAttributes>;
2310 def warn_attribute_after_definition_ignored : Warning<
2311   "attribute %0 after definition is ignored">,
2312    InGroup<IgnoredAttributes>;
2313 def warn_unknown_attribute_ignored : Warning<
2314   "unknown attribute %0 ignored">, InGroup<UnknownAttributes>;
2315 def warn_cxx11_gnu_attribute_on_type : Warning<
2316   "attribute %0 ignored, because it cannot be applied to a type">,
2317   InGroup<IgnoredAttributes>;
2318 def warn_unhandled_ms_attribute_ignored : Warning<
2319   "__declspec attribute %0 is not supported">, 
2320   InGroup<IgnoredAttributes>;
2321 def err_attribute_invalid_on_stmt : Error<
2322   "%0 attribute cannot be applied to a statement">;
2323 def warn_declspec_attribute_ignored : Warning<
2324   "attribute %0 is ignored, place it after "
2325   "\"%select{class|struct|interface|union|enum}1\" to apply attribute to "
2326   "type declaration">, InGroup<IgnoredAttributes>;
2327 def warn_attribute_precede_definition : Warning<
2328   "attribute declaration must precede definition">,
2329   InGroup<IgnoredAttributes>;
2330 def warn_attribute_void_function_method : Warning<
2331   "attribute %0 cannot be applied to "
2332   "%select{functions|Objective-C method}1 without return value">,
2333   InGroup<IgnoredAttributes>;
2334 def warn_attribute_weak_on_field : Warning<
2335   "__weak attribute cannot be specified on a field declaration">,
2336   InGroup<IgnoredAttributes>;
2337 def warn_gc_attribute_weak_on_local : Warning<
2338   "Objective-C GC does not allow weak variables on the stack">,
2339   InGroup<IgnoredAttributes>;
2340 def warn_nsobject_attribute : Warning<
2341   "'NSObject' attribute may be put on a typedef only; attribute is ignored">,
2342   InGroup<NSobjectAttribute>;
2343 def warn_independentclass_attribute : Warning<
2344   "'objc_independent_class' attribute may be put on a typedef only; "
2345   "attribute is ignored">,
2346   InGroup<IndependentClassAttribute>;
2347 def warn_ptr_independentclass_attribute : Warning<
2348   "'objc_independent_class' attribute may be put on Objective-C object "
2349   "pointer type only; attribute is ignored">,
2350   InGroup<IndependentClassAttribute>;
2351 def warn_attribute_weak_on_local : Warning<
2352   "__weak attribute cannot be specified on an automatic variable when ARC "
2353   "is not enabled">,
2354   InGroup<IgnoredAttributes>;
2355 def warn_weak_identifier_undeclared : Warning<
2356   "weak identifier %0 never declared">;
2357 def err_attribute_weak_static : Error<
2358   "weak declaration cannot have internal linkage">;
2359 def err_attribute_selectany_non_extern_data : Error<
2360   "'selectany' can only be applied to data items with external linkage">;
2361 def err_declspec_thread_on_thread_variable : Error<
2362   "'__declspec(thread)' applied to variable that already has a "
2363   "thread-local storage specifier">;
2364 def err_attribute_dll_not_extern : Error<
2365   "%q0 must have external linkage when declared %q1">;
2366 def err_attribute_dll_thread_local : Error<
2367   "%q0 cannot be thread local when declared %q1">;
2368 def err_attribute_dll_lambda : Error<
2369   "lambda cannot be declared %0">;
2370 def warn_attribute_invalid_on_definition : Warning<
2371   "'%0' attribute cannot be specified on a definition">,
2372   InGroup<IgnoredAttributes>;
2373 def err_attribute_dll_redeclaration : Error<
2374   "redeclaration of %q0 cannot add %q1 attribute">;
2375 def warn_attribute_dll_redeclaration : Warning<
2376   "redeclaration of %q0 should not add %q1 attribute">,
2377   InGroup<DiagGroup<"dll-attribute-on-redeclaration">>;
2378 def err_attribute_dllimport_function_definition : Error<
2379   "dllimport cannot be applied to non-inline function definition">;
2380 def err_attribute_dll_deleted : Error<
2381   "attribute %q0 cannot be applied to a deleted function">;
2382 def err_attribute_dllimport_data_definition : Error<
2383   "definition of dllimport data">;
2384 def err_attribute_dllimport_static_field_definition : Error<
2385   "definition of dllimport static field not allowed">;
2386 def warn_attribute_dllimport_static_field_definition : Warning<
2387   "definition of dllimport static field">,
2388   InGroup<DiagGroup<"dllimport-static-field-def">>;
2389 def warn_attribute_dllexport_explicit_instantiation_decl : Warning<
2390   "explicit instantiation declaration should not be 'dllexport'">,
2391   InGroup<DiagGroup<"dllexport-explicit-instantiation-decl">>;
2392 def warn_invalid_initializer_from_system_header : Warning<
2393   "invalid constructor form class in system header, should not be explicit">,
2394   InGroup<DiagGroup<"invalid-initializer-from-system-header">>;
2395 def note_used_in_initialization_here : Note<"used in initialization here">;
2396 def err_attribute_dll_member_of_dll_class : Error<
2397   "attribute %q0 cannot be applied to member of %q1 class">;
2398 def warn_attribute_dll_instantiated_base_class : Warning<
2399   "propagating dll attribute to %select{already instantiated|explicitly specialized}0 "
2400   "base class template without dll attribute is not supported">,
2401   InGroup<DiagGroup<"unsupported-dll-base-class-template">>, DefaultIgnore;
2402 def err_attribute_dll_ambiguous_default_ctor : Error<
2403   "'__declspec(dllexport)' cannot be applied to more than one default constructor in %0">;
2404 def err_attribute_weakref_not_static : Error<
2405   "weakref declaration must have internal linkage">;
2406 def err_attribute_weakref_not_global_context : Error<
2407   "weakref declaration of %0 must be in a global context">;
2408 def err_attribute_weakref_without_alias : Error<
2409   "weakref declaration of %0 must also have an alias attribute">;
2410 def err_alias_not_supported_on_darwin : Error <
2411   "only weak aliases are supported on darwin">;
2412 def err_alias_to_undefined : Error<
2413   "alias must point to a defined variable or function">;
2414 def warn_alias_to_weak_alias : Warning<
2415   "alias will always resolve to %0 even if weak definition of alias %1 is overridden">,
2416   InGroup<IgnoredAttributes>;
2417 def warn_alias_with_section : Warning<
2418   "alias will not be in section '%0' but in the same section as the aliasee">,
2419   InGroup<IgnoredAttributes>;
2420 def err_duplicate_mangled_name : Error<
2421   "definition with same mangled name as another definition">;
2422 def err_cyclic_alias : Error<
2423   "alias definition is part of a cycle">;
2424 def warn_attribute_wrong_decl_type : Warning<
2425   "%0 attribute only applies to %select{functions|unions|"
2426   "variables and functions|functions and methods|parameters|"
2427   "functions, methods and blocks|functions, methods, and classes|"
2428   "functions, methods, and parameters|classes|enums|variables|methods|"
2429   "variables, functions and labels|fields and global variables|structs|"
2430   "variables and typedefs|thread-local variables|"
2431   "variables and fields|variables, data members and tag types|"
2432   "types and namespaces|Objective-C interfaces|methods and properties|"
2433   "struct or union|struct, union or class|types|"
2434   "Objective-C instance methods|init methods of interface or class extension declarations|"
2435   "variables, functions and classes|Objective-C protocols|"
2436   "functions and global variables|structs, unions, and typedefs|structs and typedefs|"
2437   "interface or protocol declarations|kernel functions|non-K&R-style functions}1">,
2438   InGroup<IgnoredAttributes>;
2439 def err_attribute_wrong_decl_type : Error<warn_attribute_wrong_decl_type.Text>;
2440 def warn_type_attribute_wrong_type : Warning<
2441   "'%0' only applies to %select{function|pointer|"
2442   "Objective-C object or block pointer}1 types; type here is %2">,
2443   InGroup<IgnoredAttributes>;
2444 def warn_incomplete_encoded_type : Warning<
2445   "encoding of %0 type is incomplete because %1 component has unknown encoding">,
2446   InGroup<DiagGroup<"encode-type">>;
2447 def warn_attribute_requires_functions_or_static_globals : Warning<
2448   "%0 only applies to variables with static storage duration and functions">,
2449   InGroup<IgnoredAttributes>;
2450 def warn_gnu_inline_attribute_requires_inline : Warning<
2451   "'gnu_inline' attribute requires function to be marked 'inline',"
2452   " attribute ignored">,
2453   InGroup<IgnoredAttributes>;
2454 def err_attribute_vecreturn_only_vector_member : Error<
2455   "the vecreturn attribute can only be used on a class or structure with one member, which must be a vector">;
2456 def err_attribute_vecreturn_only_pod_record : Error<
2457   "the vecreturn attribute can only be used on a POD (plain old data) class or structure (i.e. no virtual functions)">;
2458 def err_cconv_change : Error<
2459   "function declared '%0' here was previously declared "
2460   "%select{'%2'|without calling convention}1">;
2461 def warn_cconv_ignored : Warning<
2462   "calling convention %0 ignored for this target">, InGroup<IgnoredAttributes>;
2463 def err_cconv_knr : Error<
2464   "function with no prototype cannot use the %0 calling convention">;
2465 def warn_cconv_knr : Warning<
2466   err_cconv_knr.Text>,
2467   InGroup<DiagGroup<"missing-prototype-for-cc">>;
2468 def err_cconv_varargs : Error<
2469   "variadic function cannot use %0 calling convention">;
2470 def warn_cconv_varargs : Warning<
2471   "%0 calling convention ignored on variadic function">,
2472   InGroup<IgnoredAttributes>;
2473 def warn_cconv_structors : Warning<
2474   "%0 calling convention ignored on constructor/destructor">,
2475   InGroup<IgnoredAttributes>;
2476 def err_regparm_mismatch : Error<"function declared with regparm(%0) "
2477   "attribute was previously declared "
2478   "%plural{0:without the regparm|:with the regparm(%1)}1 attribute">;
2479 def err_returns_retained_mismatch : Error<
2480   "function declared with the ns_returns_retained attribute "
2481   "was previously declared without the ns_returns_retained attribute">;
2482 def err_objc_precise_lifetime_bad_type : Error<
2483   "objc_precise_lifetime only applies to retainable types; type here is %0">;
2484 def warn_objc_precise_lifetime_meaningless : Error<
2485   "objc_precise_lifetime is not meaningful for "
2486   "%select{__unsafe_unretained|__autoreleasing}0 objects">;
2487 def err_invalid_pcs : Error<"invalid PCS type">;
2488 def warn_attribute_not_on_decl : Warning<
2489   "%0 attribute ignored when parsing type">, InGroup<IgnoredAttributes>;
2490 def err_base_specifier_attribute : Error<
2491   "%0 attribute cannot be applied to a base specifier">;
2492 def err_invalid_attribute_on_virtual_function : Error<
2493   "%0 attribute cannot be applied to virtual functions">;
2494
2495 // Availability attribute
2496 def warn_availability_unknown_platform : Warning<
2497   "unknown platform %0 in availability macro">, InGroup<Availability>;
2498 def warn_availability_version_ordering : Warning<
2499   "feature cannot be %select{introduced|deprecated|obsoleted}0 in %1 version "
2500   "%2 before it was %select{introduced|deprecated|obsoleted}3 in version %4; "
2501   "attribute ignored">, InGroup<Availability>;
2502 def warn_mismatched_availability: Warning<
2503   "availability does not match previous declaration">, InGroup<Availability>;
2504 def warn_mismatched_availability_override : Warning<
2505   "%select{|overriding }4method %select{introduced after|"
2506   "deprecated before|obsoleted before}0 "
2507   "%select{the protocol method it implements|overridden method}4 "
2508   "on %1 (%2 vs. %3)">, InGroup<Availability>;
2509 def warn_mismatched_availability_override_unavail : Warning<
2510   "%select{|overriding }1method cannot be unavailable on %0 when "
2511   "%select{the protocol method it implements|its overridden method}1 is "
2512   "available">,
2513   InGroup<Availability>;
2514 def note_overridden_method : Note<
2515   "overridden method is here">;
2516 def note_protocol_method : Note<
2517   "protocol method is here">;
2518
2519 // Thread Safety Attributes
2520 def warn_invalid_capability_name : Warning<
2521   "invalid capability name '%0'; capability name must be 'mutex' or 'role'">,
2522   InGroup<ThreadSafetyAttributes>, DefaultIgnore;
2523 def warn_thread_attribute_ignored : Warning<
2524   "ignoring %0 attribute because its argument is invalid">,
2525   InGroup<ThreadSafetyAttributes>, DefaultIgnore;
2526 def warn_thread_attribute_argument_not_lockable : Warning<
2527   "%0 attribute requires arguments whose type is annotated "
2528   "with 'capability' attribute; type here is %1">,
2529   InGroup<ThreadSafetyAttributes>, DefaultIgnore;
2530 def warn_thread_attribute_decl_not_lockable : Warning<
2531   "%0 attribute can only be applied in a context annotated "
2532   "with 'capability(\"mutex\")' attribute">,
2533   InGroup<ThreadSafetyAttributes>, DefaultIgnore;
2534 def warn_thread_attribute_decl_not_pointer : Warning<
2535   "%0 only applies to pointer types; type here is %1">,
2536   InGroup<ThreadSafetyAttributes>, DefaultIgnore;
2537 def err_attribute_argument_out_of_range : Error<
2538   "%0 attribute parameter %1 is out of bounds: "
2539   "%plural{0:no parameters to index into|"
2540   "1:can only be 1, since there is one parameter|"
2541   ":must be between 1 and %2}2">;
2542
2543 // Thread Safety Analysis   
2544 def warn_unlock_but_no_lock : Warning<"releasing %0 '%1' that was not held">,
2545   InGroup<ThreadSafetyAnalysis>, DefaultIgnore;
2546 def warn_unlock_kind_mismatch : Warning<
2547   "releasing %0 '%1' using %select{shared|exclusive}2 access, expected "
2548   "%select{shared|exclusive}3 access">,
2549   InGroup<ThreadSafetyAnalysis>, DefaultIgnore;
2550 def warn_double_lock : Warning<"acquiring %0 '%1' that is already held">,
2551   InGroup<ThreadSafetyAnalysis>, DefaultIgnore;
2552 def warn_no_unlock : Warning<
2553   "%0 '%1' is still held at the end of function">,
2554   InGroup<ThreadSafetyAnalysis>, DefaultIgnore;
2555 def warn_expecting_locked : Warning<
2556   "expecting %0 '%1' to be held at the end of function">,
2557   InGroup<ThreadSafetyAnalysis>, DefaultIgnore;  
2558 // FIXME: improve the error message about locks not in scope
2559 def warn_lock_some_predecessors : Warning<
2560   "%0 '%1' is not held on every path through here">,
2561   InGroup<ThreadSafetyAnalysis>, DefaultIgnore;
2562 def warn_expecting_lock_held_on_loop : Warning<
2563   "expecting %0 '%1' to be held at start of each loop">,
2564   InGroup<ThreadSafetyAnalysis>, DefaultIgnore;
2565 def note_locked_here : Note<"%0 acquired here">;
2566 def warn_lock_exclusive_and_shared : Warning<
2567   "%0 '%1' is acquired exclusively and shared in the same scope">,
2568   InGroup<ThreadSafetyAnalysis>, DefaultIgnore;
2569 def note_lock_exclusive_and_shared : Note<
2570   "the other acquisition of %0 '%1' is here">;
2571 def warn_variable_requires_any_lock : Warning<
2572   "%select{reading|writing}1 variable '%0' requires holding "
2573   "%select{any mutex|any mutex exclusively}1">,
2574   InGroup<ThreadSafetyAnalysis>, DefaultIgnore;
2575 def warn_var_deref_requires_any_lock : Warning<
2576   "%select{reading|writing}1 the value pointed to by '%0' requires holding "
2577   "%select{any mutex|any mutex exclusively}1">,
2578   InGroup<ThreadSafetyAnalysis>, DefaultIgnore;
2579 def warn_fun_excludes_mutex : Warning<
2580   "cannot call function '%1' while %0 '%2' is held">,
2581   InGroup<ThreadSafetyAnalysis>, DefaultIgnore;
2582 def warn_cannot_resolve_lock : Warning<
2583   "cannot resolve lock expression">,
2584   InGroup<ThreadSafetyAnalysis>, DefaultIgnore;
2585 def warn_acquired_before : Warning<
2586   "%0 '%1' must be acquired before '%2'">,
2587   InGroup<ThreadSafetyAnalysis>, DefaultIgnore;
2588 def warn_acquired_before_after_cycle : Warning<
2589   "Cycle in acquired_before/after dependencies, starting with '%0'">,
2590   InGroup<ThreadSafetyAnalysis>, DefaultIgnore;
2591
2592
2593 // Thread safety warnings negative capabilities
2594 def warn_acquire_requires_negative_cap : Warning<
2595   "acquiring %0 '%1' requires negative capability '%2'">,
2596   InGroup<ThreadSafetyNegative>, DefaultIgnore;
2597
2598 // Thread safety warnings on pass by reference
2599 def warn_guarded_pass_by_reference : Warning<
2600   "passing variable '%1' by reference requires holding %0 "
2601   "%select{'%2'|'%2' exclusively}3">,
2602   InGroup<ThreadSafetyReference>, DefaultIgnore;
2603 def warn_pt_guarded_pass_by_reference : Warning<
2604   "passing the value that '%1' points to by reference requires holding %0 "
2605   "%select{'%2'|'%2' exclusively}3">,
2606   InGroup<ThreadSafetyReference>, DefaultIgnore;
2607
2608 // Imprecise thread safety warnings
2609 def warn_variable_requires_lock : Warning<
2610   "%select{reading|writing}3 variable '%1' requires holding %0 "
2611   "%select{'%2'|'%2' exclusively}3">,
2612   InGroup<ThreadSafetyAnalysis>, DefaultIgnore;
2613 def warn_var_deref_requires_lock : Warning<
2614   "%select{reading|writing}3 the value pointed to by '%1' requires "
2615   "holding %0 %select{'%2'|'%2' exclusively}3">,
2616   InGroup<ThreadSafetyAnalysis>, DefaultIgnore;
2617 def warn_fun_requires_lock : Warning<
2618   "calling function '%1' requires holding %0 %select{'%2'|'%2' exclusively}3">,
2619   InGroup<ThreadSafetyAnalysis>, DefaultIgnore;
2620
2621 // Precise thread safety warnings
2622 def warn_variable_requires_lock_precise :
2623   Warning<warn_variable_requires_lock.Text>,
2624   InGroup<ThreadSafetyPrecise>, DefaultIgnore;
2625 def warn_var_deref_requires_lock_precise :
2626   Warning<warn_var_deref_requires_lock.Text>,
2627   InGroup<ThreadSafetyPrecise>, DefaultIgnore;
2628 def warn_fun_requires_lock_precise :
2629   Warning<warn_fun_requires_lock.Text>,
2630   InGroup<ThreadSafetyPrecise>, DefaultIgnore;
2631 def note_found_mutex_near_match : Note<"found near match '%0'">;
2632
2633 // Verbose thread safety warnings
2634 def warn_thread_safety_verbose : Warning<"Thread safety verbose warning.">, 
2635   InGroup<ThreadSafetyVerbose>, DefaultIgnore;
2636 def note_thread_warning_in_fun : Note<"Thread warning in function '%0'">;
2637 def note_guarded_by_declared_here : Note<"Guarded_by declared here.">;
2638
2639 // Dummy warning that will trigger "beta" warnings from the analysis if enabled. 
2640 def warn_thread_safety_beta : Warning<"Thread safety beta warning.">, 
2641   InGroup<ThreadSafetyBeta>, DefaultIgnore;
2642
2643 // Consumed warnings
2644 def warn_use_in_invalid_state : Warning<
2645   "invalid invocation of method '%0' on object '%1' while it is in the '%2' "
2646   "state">, InGroup<Consumed>, DefaultIgnore;
2647 def warn_use_of_temp_in_invalid_state : Warning<
2648   "invalid invocation of method '%0' on a temporary object while it is in the "
2649   "'%1' state">, InGroup<Consumed>, DefaultIgnore;
2650 def warn_attr_on_unconsumable_class : Warning<
2651   "consumed analysis attribute is attached to member of class '%0' which isn't "
2652   "marked as consumable">, InGroup<Consumed>, DefaultIgnore;
2653 def warn_return_typestate_for_unconsumable_type : Warning<
2654   "return state set for an unconsumable type '%0'">, InGroup<Consumed>,
2655   DefaultIgnore;
2656 def warn_return_typestate_mismatch : Warning<
2657   "return value not in expected state; expected '%0', observed '%1'">,
2658   InGroup<Consumed>, DefaultIgnore;
2659 def warn_loop_state_mismatch : Warning<
2660   "state of variable '%0' must match at the entry and exit of loop">,
2661   InGroup<Consumed>, DefaultIgnore;
2662 def warn_param_return_typestate_mismatch : Warning<
2663   "parameter '%0' not in expected state when the function returns: expected "
2664   "'%1', observed '%2'">, InGroup<Consumed>, DefaultIgnore;
2665 def warn_param_typestate_mismatch : Warning<
2666   "argument not in expected state; expected '%0', observed '%1'">,
2667   InGroup<Consumed>, DefaultIgnore;
2668
2669 // no_sanitize attribute
2670 def warn_unknown_sanitizer_ignored : Warning<
2671   "unknown sanitizer '%0' ignored">, InGroup<UnknownSanitizers>;
2672
2673 def warn_impcast_vector_scalar : Warning<
2674   "implicit conversion turns vector to scalar: %0 to %1">,
2675   InGroup<Conversion>, DefaultIgnore;
2676 def warn_impcast_complex_scalar : Warning<
2677   "implicit conversion discards imaginary component: %0 to %1">,
2678   InGroup<Conversion>, DefaultIgnore;
2679 def warn_impcast_float_precision : Warning<
2680   "implicit conversion loses floating-point precision: %0 to %1">,
2681   InGroup<Conversion>, DefaultIgnore;
2682 def warn_impcast_double_promotion : Warning<
2683   "implicit conversion increases floating-point precision: %0 to %1">,
2684   InGroup<DoublePromotion>, DefaultIgnore;
2685 def warn_impcast_float_integer : Warning<
2686   "implicit conversion turns floating-point number into integer: %0 to %1">,
2687   InGroup<FloatConversion>, DefaultIgnore;
2688 def warn_impcast_integer_sign : Warning<
2689   "implicit conversion changes signedness: %0 to %1">,
2690   InGroup<SignConversion>, DefaultIgnore;
2691 def warn_impcast_integer_sign_conditional : Warning<
2692   "operand of ? changes signedness: %0 to %1">,
2693   InGroup<SignConversion>, DefaultIgnore;
2694 def warn_impcast_integer_precision : Warning<
2695   "implicit conversion loses integer precision: %0 to %1">,
2696   InGroup<Conversion>, DefaultIgnore;
2697 def warn_impcast_integer_64_32 : Warning<
2698   "implicit conversion loses integer precision: %0 to %1">,
2699   InGroup<Shorten64To32>, DefaultIgnore;
2700 def warn_impcast_integer_precision_constant : Warning<
2701   "implicit conversion from %2 to %3 changes value from %0 to %1">,
2702   InGroup<ConstantConversion>;
2703 def warn_impcast_bitfield_precision_constant : Warning<
2704   "implicit truncation from %2 to bitfield changes value from %0 to %1">,
2705   InGroup<BitFieldConstantConversion>;
2706 def warn_impcast_literal_float_to_integer : Warning<
2707   "implicit conversion from %0 to %1 changes value from %2 to %3">,
2708   InGroup<LiteralConversion>;
2709 def warn_impcast_string_literal_to_bool : Warning<
2710   "implicit conversion turns string literal into bool: %0 to %1">,
2711   InGroup<StringConversion>, DefaultIgnore;
2712 def warn_impcast_different_enum_types : Warning<
2713   "implicit conversion from enumeration type %0 to different enumeration type "
2714   "%1">, InGroup<EnumConversion>;
2715 def warn_impcast_bool_to_null_pointer : Warning<
2716     "initialization of pointer of type %0 to null from a constant boolean "
2717     "expression">, InGroup<BoolConversion>;
2718 def warn_non_literal_null_pointer : Warning<
2719     "expression which evaluates to zero treated as a null pointer constant of "
2720     "type %0">, InGroup<NonLiteralNullConversion>;
2721 def warn_impcast_null_pointer_to_integer : Warning<
2722     "implicit conversion of %select{NULL|nullptr}0 constant to %1">,
2723     InGroup<NullConversion>;
2724 def warn_impcast_floating_point_to_bool : Warning<
2725     "implicit conversion turns floating-point number into bool: %0 to %1">,
2726     InGroup<ImplicitConversionFloatingPointToBool>;
2727 def ext_ms_impcast_fn_obj : ExtWarn<
2728   "implicit conversion between pointer-to-function and pointer-to-object is a "
2729   "Microsoft extension">, InGroup<MicrosoftCast>;
2730
2731 def warn_impcast_pointer_to_bool : Warning<
2732     "address of%select{| function| array}0 '%1' will always evaluate to "
2733     "'true'">,
2734     InGroup<PointerBoolConversion>;
2735 def warn_cast_nonnull_to_bool : Warning<
2736     "nonnull %select{function call|parameter}0 '%1' will evaluate to "
2737     "'true' on first encounter">,
2738     InGroup<PointerBoolConversion>;
2739 def warn_this_bool_conversion : Warning<
2740   "'this' pointer cannot be null in well-defined C++ code; pointer may be "
2741   "assumed to always convert to true">, InGroup<UndefinedBoolConversion>;
2742 def warn_address_of_reference_bool_conversion : Warning<
2743   "reference cannot be bound to dereferenced null pointer in well-defined C++ "
2744   "code; pointer may be assumed to always convert to true">,
2745   InGroup<UndefinedBoolConversion>;
2746
2747 def warn_null_pointer_compare : Warning<
2748     "comparison of %select{address of|function|array}0 '%1' %select{not |}2"
2749     "equal to a null pointer is always %select{true|false}2">,
2750     InGroup<TautologicalPointerCompare>;
2751 def warn_nonnull_expr_compare : Warning<
2752     "comparison of nonnull %select{function call|parameter}0 '%1' "
2753     "%select{not |}2equal to a null pointer is '%select{true|false}2' on first "
2754     "encounter">,
2755     InGroup<TautologicalPointerCompare>;
2756 def warn_this_null_compare : Warning<
2757   "'this' pointer cannot be null in well-defined C++ code; comparison may be "
2758   "assumed to always evaluate to %select{true|false}0">,
2759   InGroup<TautologicalUndefinedCompare>;
2760 def warn_address_of_reference_null_compare : Warning<
2761   "reference cannot be bound to dereferenced null pointer in well-defined C++ "
2762   "code; comparison may be assumed to always evaluate to "
2763   "%select{true|false}0">,
2764   InGroup<TautologicalUndefinedCompare>;
2765 def note_reference_is_return_value : Note<"%0 returns a reference">;
2766
2767 def note_function_warning_silence : Note<
2768     "prefix with the address-of operator to silence this warning">;
2769 def note_function_to_function_call : Note<
2770     "suffix with parentheses to turn this into a function call">;
2771 def warn_impcast_objective_c_literal_to_bool : Warning<
2772     "implicit boolean conversion of Objective-C object literal always "
2773     "evaluates to true">,
2774     InGroup<ObjCLiteralConversion>;
2775
2776 def warn_cast_align : Warning<
2777   "cast from %0 to %1 increases required alignment from %2 to %3">,
2778   InGroup<CastAlign>, DefaultIgnore;
2779 def warn_old_style_cast : Warning<
2780   "use of old-style cast">, InGroup<OldStyleCast>, DefaultIgnore;
2781
2782 // Separate between casts to void* and non-void* pointers.
2783 // Some APIs use (abuse) void* for something like a user context,
2784 // and often that value is an integer even if it isn't a pointer itself.
2785 // Having a separate warning flag allows users to control the warning
2786 // for their workflow.
2787 def warn_int_to_pointer_cast : Warning<
2788   "cast to %1 from smaller integer type %0">,
2789   InGroup<IntToPointerCast>;
2790 def warn_int_to_void_pointer_cast : Warning<
2791   "cast to %1 from smaller integer type %0">,
2792   InGroup<IntToVoidPointerCast>;
2793
2794 def warn_attribute_packed_for_bitfield : Warning<
2795   "'packed' attribute was ignored on bit-fields with single-byte alignment "
2796   "in older versions of GCC and Clang">,
2797   InGroup<DiagGroup<"attribute-packed-for-bitfield">>;
2798 def warn_transparent_union_attribute_field_size_align : Warning<
2799   "%select{alignment|size}0 of field %1 (%2 bits) does not match the "
2800   "%select{alignment|size}0 of the first field in transparent union; "
2801   "transparent_union attribute ignored">,
2802   InGroup<IgnoredAttributes>;
2803 def note_transparent_union_first_field_size_align : Note<
2804   "%select{alignment|size}0 of first field is %1 bits">;
2805 def warn_transparent_union_attribute_not_definition : Warning<
2806   "transparent_union attribute can only be applied to a union definition; "
2807   "attribute ignored">,
2808   InGroup<IgnoredAttributes>;
2809 def warn_transparent_union_attribute_floating : Warning<
2810   "first field of a transparent union cannot have %select{floating point|"
2811   "vector}0 type %1; transparent_union attribute ignored">,
2812   InGroup<IgnoredAttributes>;
2813 def warn_transparent_union_attribute_zero_fields : Warning<
2814   "transparent union definition must contain at least one field; "
2815   "transparent_union attribute ignored">,
2816   InGroup<IgnoredAttributes>;
2817 def warn_attribute_type_not_supported : Warning<
2818   "%0 attribute argument not supported: %1">,
2819   InGroup<IgnoredAttributes>;
2820 def warn_attribute_unknown_visibility : Warning<"unknown visibility %0">,
2821   InGroup<IgnoredAttributes>;
2822 def warn_attribute_protected_visibility :
2823   Warning<"target does not support 'protected' visibility; using 'default'">,
2824   InGroup<DiagGroup<"unsupported-visibility">>;
2825 def err_mismatched_visibility: Error<"visibility does not match previous declaration">;
2826 def note_previous_attribute : Note<"previous attribute is here">;
2827 def note_conflicting_attribute : Note<"conflicting attribute is here">;
2828 def note_attribute : Note<"attribute is here">;
2829 def err_mismatched_ms_inheritance : Error<
2830   "inheritance model does not match %select{definition|previous declaration}0">;
2831 def warn_ignored_ms_inheritance : Warning<
2832   "inheritance model ignored on %select{primary template|partial specialization}0">,
2833   InGroup<IgnoredAttributes>;
2834 def note_previous_ms_inheritance : Note<
2835   "previous inheritance model specified here">;
2836 def err_machine_mode : Error<"%select{unknown|unsupported}0 machine mode %1">;
2837 def err_mode_not_primitive : Error<
2838   "mode attribute only supported for integer and floating-point types">;
2839 def err_mode_wrong_type : Error<
2840   "type of machine mode does not match type of base type">;
2841 def warn_vector_mode_deprecated : Warning<
2842   "specifying vector types with the 'mode' attribute is deprecated; "
2843   "use the 'vector_size' attribute instead">,
2844   InGroup<DeprecatedAttributes>;
2845 def err_complex_mode_vector_type : Error<
2846   "type of machine mode does not support base vector types">;
2847 def err_attr_wrong_decl : Error<
2848   "%0 attribute invalid on this declaration, requires typedef or value">;
2849 def warn_attribute_nonnull_no_pointers : Warning<
2850   "'nonnull' attribute applied to function with no pointer arguments">,
2851   InGroup<IgnoredAttributes>;
2852 def warn_attribute_nonnull_parm_no_args : Warning<
2853   "'nonnull' attribute when used on parameters takes no arguments">,
2854   InGroup<IgnoredAttributes>;
2855 def warn_attribute_sentinel_named_arguments : Warning<
2856   "'sentinel' attribute requires named arguments">,
2857   InGroup<IgnoredAttributes>;
2858 def warn_attribute_sentinel_not_variadic : Warning<
2859   "'sentinel' attribute only supported for variadic %select{functions|blocks}0">,
2860   InGroup<IgnoredAttributes>;
2861 def err_attribute_sentinel_less_than_zero : Error<
2862   "'sentinel' parameter 1 less than zero">;
2863 def err_attribute_sentinel_not_zero_or_one : Error<
2864   "'sentinel' parameter 2 not 0 or 1">;
2865 def warn_cleanup_ext : Warning<
2866   "GCC does not allow the 'cleanup' attribute argument to be anything other "
2867   "than a simple identifier">, 
2868   InGroup<GccCompat>;
2869 def err_attribute_cleanup_arg_not_function : Error<
2870   "'cleanup' argument %select{|%1 |%1 }0is not a %select{||single }0function">;
2871 def err_attribute_cleanup_func_must_take_one_arg : Error<
2872   "'cleanup' function %0 must take 1 parameter">;
2873 def err_attribute_cleanup_func_arg_incompatible_type : Error<
2874   "'cleanup' function %0 parameter has "
2875   "%diff{type $ which is incompatible with type $|incompatible type}1,2">;
2876 def err_attribute_regparm_wrong_platform : Error<
2877   "'regparm' is not valid on this platform">;
2878 def err_attribute_regparm_invalid_number : Error<
2879   "'regparm' parameter must be between 0 and %0 inclusive">;
2880 def err_attribute_not_supported_in_lang : Error<
2881   "%0 attribute is not supported in %select{C|C++|Objective-C}1">;
2882
2883
2884 // Clang-Specific Attributes
2885 def warn_attribute_iboutlet : Warning<
2886   "%0 attribute can only be applied to instance variables or properties">,
2887   InGroup<IgnoredAttributes>;
2888 def err_iboutletcollection_type : Error<
2889   "invalid type %0 as argument of iboutletcollection attribute">;
2890 def err_iboutletcollection_builtintype : Error<
2891   "type argument of iboutletcollection attribute cannot be a builtin type">;
2892 def warn_iboutlet_object_type : Warning<
2893   "%select{instance variable|property}2 with %0 attribute must "
2894   "be an object type (invalid %1)">, InGroup<ObjCInvalidIBOutletProperty>;
2895 def warn_iboutletcollection_property_assign : Warning<
2896   "IBOutletCollection properties should be copy/strong and not assign">,
2897   InGroup<ObjCInvalidIBOutletProperty>;
2898   
2899 def err_attribute_overloadable_missing : Error<
2900   "%select{overloaded function|redeclaration of}0 %1 must have the "
2901   "'overloadable' attribute">;
2902 def note_attribute_overloadable_prev_overload : Note<
2903   "previous overload of function is here">;
2904 def err_attribute_overloadable_no_prototype : Error<
2905   "'overloadable' function %0 must have a prototype">;
2906 def warn_ns_attribute_wrong_return_type : Warning<
2907   "%0 attribute only applies to %select{functions|methods|properties}1 that "
2908   "return %select{an Objective-C object|a pointer|a non-retainable pointer}2">,
2909   InGroup<IgnoredAttributes>;
2910 def warn_ns_attribute_wrong_parameter_type : Warning<
2911   "%0 attribute only applies to "
2912   "%select{Objective-C object|pointer|pointer-to-CF-pointer}1 parameters">,
2913   InGroup<IgnoredAttributes>;
2914 def warn_objc_requires_super_protocol : Warning<
2915   "%0 attribute cannot be applied to %select{methods in protocols|dealloc}1">,
2916   InGroup<DiagGroup<"requires-super-attribute">>;
2917 def note_protocol_decl : Note<
2918   "protocol is declared here">;
2919 def note_protocol_decl_undefined : Note<
2920   "protocol %0 has no definition">;
2921
2922 // objc_designated_initializer attribute diagnostics.
2923 def warn_objc_designated_init_missing_super_call : Warning<
2924   "designated initializer missing a 'super' call to a designated initializer of the super class">,
2925   InGroup<ObjCDesignatedInit>;
2926 def note_objc_designated_init_marked_here : Note<
2927   "method marked as designated initializer of the class here">;
2928 def warn_objc_designated_init_non_super_designated_init_call : Warning<
2929   "designated initializer should only invoke a designated initializer on 'super'">,
2930   InGroup<ObjCDesignatedInit>;
2931 def warn_objc_designated_init_non_designated_init_call : Warning<
2932   "designated initializer invoked a non-designated initializer">,
2933   InGroup<ObjCDesignatedInit>;
2934 def warn_objc_secondary_init_super_init_call : Warning<
2935   "convenience initializer should not invoke an initializer on 'super'">,
2936   InGroup<ObjCDesignatedInit>;
2937 def warn_objc_secondary_init_missing_init_call : Warning<
2938   "convenience initializer missing a 'self' call to another initializer">,
2939   InGroup<ObjCDesignatedInit>;
2940 def warn_objc_implementation_missing_designated_init_override : Warning<
2941   "method override for the designated initializer of the superclass %objcinstance0 not found">,
2942   InGroup<ObjCDesignatedInit>;
2943
2944 // objc_bridge attribute diagnostics.
2945 def err_objc_attr_not_id : Error<
2946   "parameter of %0 attribute must be a single name of an Objective-C %select{class|protocol}1">;
2947 def err_objc_attr_typedef_not_id : Error<
2948   "parameter of %0 attribute must be 'id' when used on a typedef">;
2949 def err_objc_attr_typedef_not_void_pointer : Error<
2950   "'objc_bridge(id)' is only allowed on structs and typedefs of void pointers">;
2951 def err_objc_cf_bridged_not_interface : Error<
2952   "CF object of type %0 is bridged to %1, which is not an Objective-C class">;
2953 def err_objc_ns_bridged_invalid_cfobject : Error<
2954   "ObjectiveC object of type %0 is bridged to %1, which is not valid CF object">;
2955 def warn_objc_invalid_bridge : Warning<
2956   "%0 bridges to %1, not %2">, InGroup<ObjCBridge>;
2957 def warn_objc_invalid_bridge_to_cf : Warning<
2958   "%0 cannot bridge to %1">, InGroup<ObjCBridge>;
2959
2960 // objc_bridge_related attribute diagnostics.
2961 def err_objc_bridged_related_invalid_class : Error<
2962   "could not find Objective-C class %0 to convert %1 to %2">;
2963 def err_objc_bridged_related_invalid_class_name : Error<
2964   "%0 must be name of an Objective-C class to be able to convert %1 to %2">;
2965 def err_objc_bridged_related_known_method : Error<
2966  "%0 must be explicitly converted to %1; use %select{%objcclass2|%objcinstance2}3 "
2967  "method for this conversion">;
2968
2969 def err_objc_attr_protocol_requires_definition : Error<
2970   "attribute %0 can only be applied to @protocol definitions, not forward declarations">;
2971
2972 // Function Parameter Semantic Analysis.
2973 def err_param_with_void_type : Error<"argument may not have 'void' type">;
2974 def err_void_only_param : Error<
2975   "'void' must be the first and only parameter if specified">;
2976 def err_void_param_qualified : Error<
2977   "'void' as parameter must not have type qualifiers">;
2978 def err_ident_list_in_fn_declaration : Error<
2979   "a parameter list without types is only allowed in a function definition">;
2980 def ext_param_not_declared : Extension<
2981   "parameter %0 was not declared, defaulting to type 'int'">;
2982 def err_param_default_argument : Error<
2983   "C does not support default arguments">;
2984 def err_param_default_argument_redefinition : Error<
2985   "redefinition of default argument">;
2986 def ext_param_default_argument_redefinition : ExtWarn<
2987   err_param_default_argument_redefinition.Text>,
2988   InGroup<MicrosoftDefaultArgRedefinition>;
2989 def err_param_default_argument_missing : Error<
2990   "missing default argument on parameter">;
2991 def err_param_default_argument_missing_name : Error<
2992   "missing default argument on parameter %0">;
2993 def err_param_default_argument_references_param : Error<
2994   "default argument references parameter %0">;
2995 def err_param_default_argument_references_local : Error<
2996   "default argument references local variable %0 of enclosing function">;
2997 def err_param_default_argument_references_this : Error<
2998   "default argument references 'this'">;
2999 def err_param_default_argument_nonfunc : Error<
3000   "default arguments can only be specified for parameters in a function "
3001   "declaration">;
3002 def err_param_default_argument_template_redecl : Error<
3003   "default arguments cannot be added to a function template that has already "
3004   "been declared">;
3005 def err_param_default_argument_member_template_redecl : Error<
3006   "default arguments cannot be added to an out-of-line definition of a member "
3007   "of a %select{class template|class template partial specialization|nested "
3008   "class in a template}0">;
3009 def err_param_default_argument_on_parameter_pack : Error<
3010   "parameter pack cannot have a default argument">;
3011 def err_uninitialized_member_for_assign : Error<
3012   "cannot define the implicit copy assignment operator for %0, because "
3013   "non-static %select{reference|const}1 member %2 cannot use copy "
3014   "assignment operator">;
3015 def err_uninitialized_member_in_ctor : Error<
3016   "%select{|implicit default |inheriting }0constructor for %1 must explicitly "
3017   "initialize the %select{reference|const}2 member %3">;
3018 def err_default_arg_makes_ctor_special : Error<
3019   "addition of default argument on redeclaration makes this constructor a "
3020   "%select{default|copy|move}0 constructor">;
3021
3022 def err_use_of_default_argument_to_function_declared_later : Error<
3023   "use of default argument to function %0 that is declared later in class %1">;
3024 def note_default_argument_declared_here : Note<
3025   "default argument declared here">;
3026
3027 def ext_param_promoted_not_compatible_with_prototype : ExtWarn<
3028   "%diff{promoted type $ of K&R function parameter is not compatible with the "
3029   "parameter type $|promoted type of K&R function parameter is not compatible "
3030   "with parameter type}0,1 declared in a previous prototype">,
3031   InGroup<KNRPromotedParameter>;
3032
3033
3034 // C++ Overloading Semantic Analysis.
3035 def err_ovl_diff_return_type : Error<
3036   "functions that differ only in their return type cannot be overloaded">;
3037 def err_ovl_static_nonstatic_member : Error<
3038   "static and non-static member functions with the same parameter types "
3039   "cannot be overloaded">;
3040
3041 def err_ovl_no_viable_function_in_call : Error<
3042   "no matching function for call to %0">;
3043 def err_ovl_no_viable_member_function_in_call : Error<
3044   "no matching member function for call to %0">;
3045 def err_ovl_ambiguous_call : Error<
3046   "call to %0 is ambiguous">;
3047 def err_ovl_deleted_call : Error<
3048   "call to %select{unavailable|deleted}0 function %1%2">;
3049 def err_ovl_ambiguous_member_call : Error<
3050   "call to member function %0 is ambiguous">;
3051 def err_ovl_deleted_member_call : Error<
3052   "call to %select{unavailable|deleted}0 member function %1%2">;
3053 def note_ovl_too_many_candidates : Note<
3054     "remaining %0 candidate%s0 omitted; "
3055     "pass -fshow-overloads=all to show them">;
3056 def note_ovl_candidate : Note<"candidate "
3057     "%select{function|function|constructor|"
3058     "function |function |constructor |"
3059     "is the implicit default constructor|"
3060     "is the implicit copy constructor|"
3061     "is the implicit move constructor|"
3062     "is the implicit copy assignment operator|"
3063     "is the implicit move assignment operator|"
3064     "is an inherited constructor}0%1"
3065     "%select{| has different class%diff{ (expected $ but has $)|}3,4"
3066     "| has different number of parameters (expected %3 but has %4)"
3067     "| has type mismatch at %ordinal3 parameter"
3068     "%diff{ (expected $ but has $)|}4,5"
3069     "| has different return type%diff{ ($ expected but has $)|}3,4"
3070     "| has different qualifiers (expected "
3071     "%select{none|const|restrict|const and restrict|volatile|const and volatile"
3072     "|volatile and restrict|const, volatile, and restrict}3 but found "
3073     "%select{none|const|restrict|const and restrict|volatile|const and volatile"
3074     "|volatile and restrict|const, volatile, and restrict}4)}2">;
3075
3076 def note_ovl_candidate_inherited_constructor : Note<"inherited from here">;
3077 def note_ovl_candidate_illegal_constructor : Note<
3078     "candidate %select{constructor|template}0 ignored: "
3079     "instantiation %select{takes|would take}0 its own class type by value">;
3080 def note_ovl_candidate_bad_deduction : Note<
3081     "candidate template ignored: failed template argument deduction">;
3082 def note_ovl_candidate_incomplete_deduction : Note<"candidate template ignored: "
3083     "couldn't infer template argument %0">;
3084 def note_ovl_candidate_inconsistent_deduction : Note<
3085     "candidate template ignored: deduced conflicting %select{types|values|"
3086     "templates}0 for parameter %1%diff{ ($ vs. $)|}2,3">;
3087 def note_ovl_candidate_explicit_arg_mismatch_named : Note<
3088     "candidate template ignored: invalid explicitly-specified argument "
3089     "for template parameter %0">;
3090 def note_ovl_candidate_explicit_arg_mismatch_unnamed : Note<
3091     "candidate template ignored: invalid explicitly-specified argument "
3092     "for %ordinal0 template parameter">;
3093 def note_ovl_candidate_instantiation_depth : Note<
3094     "candidate template ignored: substitution exceeded maximum template "
3095     "instantiation depth">;
3096 def note_ovl_candidate_underqualified : Note<
3097     "candidate template ignored: cannot deduce a type for %0 that would "
3098     "make %2 equal %1">;
3099 def note_ovl_candidate_substitution_failure : Note<
3100     "candidate template ignored: substitution failure%0%1">;
3101 def note_ovl_candidate_disabled_by_enable_if : Note<
3102     "candidate template ignored: disabled by %0%1">;
3103 def note_ovl_candidate_has_pass_object_size_params: Note<
3104     "candidate address cannot be taken because parameter %0 has "
3105     "pass_object_size attribute">;
3106 def note_ovl_candidate_disabled_by_enable_if_attr : Note<
3107     "candidate disabled: %0">;
3108 def err_addrof_function_disabled_by_enable_if_attr : Error<
3109     "cannot take address of function %0 becuase it has one or more "
3110     "non-tautological enable_if conditions">;
3111 def note_addrof_ovl_candidate_disabled_by_enable_if_attr : Note<
3112     "candidate function made ineligible by enable_if">;
3113 def note_ovl_candidate_failed_overload_resolution : Note<
3114     "candidate template ignored: couldn't resolve reference to overloaded "
3115     "function %0">;
3116 def note_ovl_candidate_deduced_mismatch : Note<
3117     "candidate template ignored: deduced type "
3118     "%diff{$ of %ordinal0 parameter does not match adjusted type $ of argument"
3119     "|of %ordinal0 parameter does not match adjusted type of argument}1,2%3">;
3120 def note_ovl_candidate_non_deduced_mismatch : Note<
3121     "candidate template ignored: could not match %diff{$ against $|types}0,1">;
3122 // This note is needed because the above note would sometimes print two
3123 // different types with the same name.  Remove this note when the above note
3124 // can handle that case properly.
3125 def note_ovl_candidate_non_deduced_mismatch_qualified : Note<
3126     "candidate template ignored: could not match %q0 against %q1">;
3127
3128 // Note that we don't treat templates differently for this diagnostic.
3129 def note_ovl_candidate_arity : Note<"candidate "
3130     "%select{function|function|constructor|function|function|constructor|"
3131     "constructor (the implicit default constructor)|"
3132     "constructor (the implicit copy constructor)|"
3133     "constructor (the implicit move constructor)|"
3134     "function (the implicit copy assignment operator)|"
3135     "function (the implicit move assignment operator)|"
3136     "constructor (inherited)}0 %select{|template }1"
3137     "not viable: requires%select{ at least| at most|}2 %3 argument%s3, but %4 "
3138     "%plural{1:was|:were}4 provided">;
3139
3140 def note_ovl_candidate_arity_one : Note<"candidate "
3141     "%select{function|function|constructor|function|function|constructor|"
3142     "constructor (the implicit default constructor)|"
3143     "constructor (the implicit copy constructor)|"
3144     "constructor (the implicit move constructor)|"
3145     "function (the implicit copy assignment operator)|"
3146     "function (the implicit move assignment operator)|"
3147     "constructor (inherited)}0 %select{|template }1not viable: "
3148     "%select{requires at least|allows at most single|requires single}2 "
3149     "argument %3, but %plural{0:no|:%4}4 arguments were provided">;
3150
3151 def note_ovl_candidate_deleted : Note<
3152     "candidate %select{function|function|constructor|"
3153     "function |function |constructor |"
3154     "constructor (the implicit default constructor)|"
3155     "constructor (the implicit copy constructor)|"
3156     "constructor (the implicit move constructor)|"
3157     "function (the implicit copy assignment operator)|"
3158     "function (the implicit move assignment operator)|"
3159     "constructor (inherited)}0%1 has been "
3160     "%select{explicitly made unavailable|explicitly deleted|"
3161     "implicitly deleted}2">;
3162
3163 // Giving the index of the bad argument really clutters this message, and
3164 // it's relatively unimportant because 1) it's generally obvious which
3165 // argument(s) are of the given object type and 2) the fix is usually
3166 // to complete the type, which doesn't involve changes to the call line
3167 // anyway.  If people complain, we can change it.
3168 def note_ovl_candidate_bad_conv_incomplete : Note<"candidate "
3169     "%select{function|function|constructor|"
3170     "function |function |constructor |"
3171     "constructor (the implicit default constructor)|"
3172     "constructor (the implicit copy constructor)|"
3173     "constructor (the implicit move constructor)|"
3174     "function (the implicit copy assignment operator)|"
3175     "function (the implicit move assignment operator)|"
3176     "constructor (inherited)}0%1 "
3177     "not viable: cannot convert argument of incomplete type "
3178     "%diff{$ to $|to parameter type}2,3">;
3179 def note_ovl_candidate_bad_list_argument : Note<"candidate "
3180     "%select{function|function|constructor|"
3181     "function |function |constructor |"
3182     "constructor (the implicit default constructor)|"
3183     "constructor (the implicit copy constructor)|"
3184     "constructor (the implicit move constructor)|"
3185     "function (the implicit copy assignment operator)|"
3186     "function (the implicit move assignment operator)|"
3187     "constructor (inherited)}0%1 "
3188     "not viable: cannot convert initializer list argument to %3">;
3189 def note_ovl_candidate_bad_overload : Note<"candidate "
3190     "%select{function|function|constructor|"
3191     "function |function |constructor |"
3192     "constructor (the implicit default constructor)|"
3193     "constructor (the implicit copy constructor)|"
3194     "constructor (the implicit move constructor)|"
3195     "function (the implicit copy assignment operator)|"
3196     "function (the implicit move assignment operator)|"
3197     "constructor (inherited)}0%1"
3198     " not viable: no overload of %3 matching %2 for %ordinal4 argument">;
3199 def note_ovl_candidate_bad_conv : Note<"candidate "
3200     "%select{function|function|constructor|"
3201     "function |function |constructor |"
3202     "constructor (the implicit default constructor)|"
3203     "constructor (the implicit copy constructor)|"
3204     "constructor (the implicit move constructor)|"
3205     "function (the implicit copy assignment operator)|"
3206     "function (the implicit move assignment operator)|"
3207     "constructor (inherited)}0%1"
3208     " not viable: no known conversion "
3209     "%diff{from $ to $|from argument type to parameter type}2,3 for "
3210     "%select{%ordinal5 argument|object argument}4"
3211     "%select{|; dereference the argument with *|"
3212     "; take the address of the argument with &|"
3213     "; remove *|"
3214     "; remove &}6">;
3215 def note_ovl_candidate_bad_arc_conv : Note<"candidate "
3216     "%select{function|function|constructor|"
3217     "function |function |constructor |"
3218     "constructor (the implicit default constructor)|"
3219     "constructor (the implicit copy constructor)|"
3220     "constructor (the implicit move constructor)|"
3221     "function (the implicit copy assignment operator)|"
3222     "function (the implicit move assignment operator)|"
3223     "constructor (inherited)}0%1"
3224     " not viable: cannot implicitly convert argument "
3225     "%diff{of type $ to $|type to parameter type}2,3 for "
3226     "%select{%ordinal5 argument|object argument}4 under ARC">;
3227 def note_ovl_candidate_bad_lvalue : Note<"candidate "
3228     "%select{function|function|constructor|"
3229     "function |function |constructor |"
3230     "constructor (the implicit default constructor)|"
3231     "constructor (the implicit copy constructor)|"
3232     "constructor (the implicit move constructor)|"
3233     "function (the implicit copy assignment operator)|"
3234     "function (the implicit move assignment operator)|"
3235     "constructor (inherited)}0%1"
3236     " not viable: expects an l-value for "
3237     "%select{%ordinal3 argument|object argument}2">;
3238 def note_ovl_candidate_bad_addrspace : Note<"candidate "
3239     "%select{function|function|constructor|"
3240     "function |function |constructor |"
3241     "constructor (the implicit default constructor)|"
3242     "constructor (the implicit copy constructor)|"
3243     "constructor (the implicit move constructor)|"
3244     "function (the implicit copy assignment operator)|"
3245     "function (the implicit move assignment operator)|"
3246     "constructor (inherited)}0%1 not viable: "
3247     "%select{%ordinal6|'this'}5 argument (%2) is in "
3248     "address space %3, but parameter must be in address space %4">;
3249 def note_ovl_candidate_bad_gc : Note<"candidate "
3250     "%select{function|function|constructor|"
3251     "function |function |constructor |"
3252     "constructor (the implicit default constructor)|"
3253     "constructor (the implicit copy constructor)|"
3254     "constructor (the implicit move constructor)|"
3255     "function (the implicit copy assignment operator)|"
3256     "function (the implicit move assignment operator)|"
3257     "constructor (inherited)}0%1 not viable: "
3258     "%select{%ordinal6|'this'}5 argument (%2) has %select{no|__weak|__strong}3 "
3259     "ownership, but parameter has %select{no|__weak|__strong}4 ownership">;
3260 def note_ovl_candidate_bad_ownership : Note<"candidate "
3261     "%select{function|function|constructor|"
3262     "function |function |constructor |"
3263     "constructor (the implicit default constructor)|"
3264     "constructor (the implicit copy constructor)|"
3265     "constructor (the implicit move constructor)|"
3266     "function (the implicit copy assignment operator)|"
3267     "function (the implicit move assignment operator)|"
3268     "constructor (inherited)}0%1 not viable: "
3269     "%select{%ordinal6|'this'}5 argument (%2) has "
3270     "%select{no|__unsafe_unretained|__strong|__weak|__autoreleasing}3 ownership,"
3271     " but parameter has %select{no|__unsafe_unretained|__strong|__weak|"
3272     "__autoreleasing}4 ownership">;
3273 def note_ovl_candidate_bad_cvr_this : Note<"candidate "
3274     "%select{|function|||function|||||"
3275     "function (the implicit copy assignment operator)|"
3276     "function (the implicit move assignment operator)|}0 not viable: "
3277     "'this' argument has type %2, but method is not marked "
3278     "%select{const|restrict|const or restrict|volatile|const or volatile|"
3279     "volatile or restrict|const, volatile, or restrict}3">;
3280 def note_ovl_candidate_bad_cvr : Note<"candidate "
3281     "%select{function|function|constructor|"
3282     "function |function |constructor |"
3283     "constructor (the implicit default constructor)|"
3284     "constructor (the implicit copy constructor)|"
3285     "constructor (the implicit move constructor)|"
3286     "function (the implicit copy assignment operator)|"
3287     "function (the implicit move assignment operator)|"
3288     "constructor (inherited)}0%1 not viable: "
3289     "%ordinal4 argument (%2) would lose "
3290     "%select{const|restrict|const and restrict|volatile|const and volatile|"
3291     "volatile and restrict|const, volatile, and restrict}3 qualifier"
3292     "%select{||s||s|s|s}3">;
3293 def note_ovl_candidate_bad_base_to_derived_conv : Note<"candidate "
3294     "%select{function|function|constructor|"
3295     "function |function |constructor |"
3296     "constructor (the implicit default constructor)|"
3297     "constructor (the implicit copy constructor)|"
3298     "constructor (the implicit move constructor)|"
3299     "function (the implicit copy assignment operator)|"
3300     "function (the implicit move assignment operator)|"
3301     "constructor (inherited)}0%1"
3302     " not viable: cannot %select{convert from|convert from|bind}2 "
3303     "%select{base class pointer|superclass|base class object of type}2 %3 to "
3304     "%select{derived class pointer|subclass|derived class reference}2 %4 for "
3305     "%ordinal5 argument">;
3306 def note_ovl_candidate_bad_target : Note<
3307     "candidate %select{function|function|constructor|"
3308     "function |function |constructor |"
3309     "constructor (the implicit default constructor)|"
3310     "constructor (the implicit copy constructor)|"
3311     "constructor (the implicit move constructor)|"
3312     "function (the implicit copy assignment operator)|"
3313     "function (the implicit move assignment operator)|"
3314     "constructor (inherited)}0 not viable: call to "
3315     "%select{__device__|__global__|__host__|__host__ __device__|invalid}1 function from"
3316     " %select{__device__|__global__|__host__|__host__ __device__|invalid}2 function">;
3317 def note_implicit_member_target_infer_collision : Note<
3318     "implicit %select{"
3319     "default constructor|"
3320     "copy constructor|"
3321     "move constructor|"
3322     "copy assignment operator|"
3323     "move assignment operator|"
3324     "destructor}0 inferred target collision: call to both "
3325     "%select{__device__|__global__|__host__|__host__ __device__}1 and "
3326     "%select{__device__|__global__|__host__|__host__ __device__}2 members">;
3327
3328 def note_ambiguous_type_conversion: Note<
3329     "because of ambiguity in conversion %diff{of $ to $|between types}0,1">;
3330 def note_ovl_builtin_binary_candidate : Note<
3331     "built-in candidate %0">;
3332 def note_ovl_builtin_unary_candidate : Note<
3333     "built-in candidate %0">;
3334 def err_ovl_no_viable_function_in_init : Error<
3335   "no matching constructor for initialization of %0">;
3336 def err_ovl_no_conversion_in_cast : Error<
3337   "cannot convert %1 to %2 without a conversion operator">;
3338 def err_ovl_no_viable_conversion_in_cast : Error<
3339   "no matching conversion for %select{|static_cast|reinterpret_cast|"
3340   "dynamic_cast|C-style cast|functional-style cast}0 from %1 to %2">;
3341 def err_ovl_ambiguous_conversion_in_cast : Error<
3342   "ambiguous conversion for %select{|static_cast|reinterpret_cast|"
3343   "dynamic_cast|C-style cast|functional-style cast}0 from %1 to %2">;
3344 def err_ovl_deleted_conversion_in_cast : Error<
3345   "%select{|static_cast|reinterpret_cast|dynamic_cast|C-style cast|"
3346   "functional-style cast}0 from %1 to %2 uses deleted function">;
3347 def err_ovl_ambiguous_init : Error<"call to constructor of %0 is ambiguous">;
3348 def err_ref_init_ambiguous : Error<
3349   "reference initialization of type %0 with initializer of type %1 is ambiguous">;
3350 def err_ovl_deleted_init : Error<
3351   "call to %select{unavailable|deleted}0 constructor of %1">;
3352 def err_ovl_deleted_special_init : Error<
3353   "call to implicitly-deleted %select{default constructor|copy constructor|"
3354   "move constructor|copy assignment operator|move assignment operator|"
3355   "destructor|function}0 of %1">;
3356 def err_ovl_ambiguous_oper_unary : Error<
3357   "use of overloaded operator '%0' is ambiguous (operand type %1)">;
3358 def err_ovl_ambiguous_oper_binary : Error<
3359   "use of overloaded operator '%0' is ambiguous (with operand types %1 and %2)">;
3360 def err_ovl_no_viable_oper : Error<"no viable overloaded '%0'">;
3361 def note_assign_lhs_incomplete : Note<"type %0 is incomplete">;
3362 def err_ovl_deleted_oper : Error<
3363   "overload resolution selected %select{unavailable|deleted}0 operator '%1'%2">;
3364 def err_ovl_deleted_special_oper : Error<
3365   "object of type %0 cannot be %select{constructed|copied|moved|assigned|"
3366   "assigned|destroyed}1 because its %select{default constructor|"
3367   "copy constructor|move constructor|copy assignment operator|"
3368   "move assignment operator|destructor}1 is implicitly deleted">;
3369 def err_ovl_no_viable_subscript :
3370     Error<"no viable overloaded operator[] for type %0">;
3371 def err_ovl_no_oper :
3372     Error<"type %0 does not provide a %select{subscript|call}1 operator">;
3373 def err_ovl_unresolvable : Error<
3374   "reference to overloaded function could not be resolved; "
3375   "did you mean to call it%select{| with no arguments}0?">;
3376 def err_bound_member_function : Error<
3377   "reference to non-static member function must be called"
3378   "%select{|; did you mean to call it with no arguments?}0">;
3379 def note_possible_target_of_call : Note<"possible target for call">;
3380
3381 def err_ovl_no_viable_object_call : Error<
3382   "no matching function for call to object of type %0">;
3383 def err_ovl_ambiguous_object_call : Error<
3384   "call to object of type %0 is ambiguous">;
3385 def err_ovl_deleted_object_call : Error<
3386   "call to %select{unavailable|deleted}0 function call operator in type %1%2">;
3387 def note_ovl_surrogate_cand : Note<"conversion candidate of type %0">;
3388 def err_member_call_without_object : Error<
3389   "call to non-static member function without an object argument">;
3390
3391 // C++ Address of Overloaded Function
3392 def err_addr_ovl_no_viable : Error<
3393   "address of overloaded function %0 does not match required type %1">;
3394 def err_addr_ovl_ambiguous : Error<
3395   "address of overloaded function %0 is ambiguous">;
3396 def err_addr_ovl_not_func_ptrref : Error<
3397   "address of overloaded function %0 cannot be converted to type %1">;
3398 def err_addr_ovl_no_qualifier : Error<
3399   "cannot form member pointer of type %0 without '&' and class name">;
3400
3401 // C++11 Literal Operators
3402 def err_ovl_no_viable_literal_operator : Error<
3403   "no matching literal operator for call to %0"
3404   "%select{| with argument of type %2| with arguments of types %2 and %3}1"
3405   "%select{| or 'const char *'}4"
3406   "%select{|, and no matching literal operator template}5">;
3407
3408 // C++ Template Declarations
3409 def err_template_param_shadow : Error<
3410   "declaration of %0 shadows template parameter">;
3411 def note_template_param_here : Note<"template parameter is declared here">;
3412 def warn_template_export_unsupported : Warning<
3413   "exported templates are unsupported">;
3414 def err_template_outside_namespace_or_class_scope : Error<
3415   "templates can only be declared in namespace or class scope">;
3416 def err_template_inside_local_class : Error<
3417   "templates cannot be declared inside of a local class">;
3418 def err_template_linkage : Error<"templates must have C++ linkage">;
3419 def err_template_typedef : Error<"a typedef cannot be a template">;
3420 def err_template_unnamed_class : Error<
3421   "cannot declare a class template with no name">;
3422 def err_template_param_list_different_arity : Error<
3423   "%select{too few|too many}0 template parameters in template "
3424   "%select{|template parameter }1redeclaration">;
3425 def note_template_param_list_different_arity : Note<
3426   "%select{too few|too many}0 template parameters in template template "
3427   "argument">;
3428 def note_template_prev_declaration : Note<
3429   "previous template %select{declaration|template parameter}0 is here">;
3430 def err_template_param_different_kind : Error<
3431   "template parameter has a different kind in template "
3432   "%select{|template parameter }0redeclaration">;
3433 def note_template_param_different_kind : Note<
3434   "template parameter has a different kind in template argument">;
3435   
3436 def err_template_nontype_parm_different_type : Error<
3437   "template non-type parameter has a different type %0 in template "
3438   "%select{|template parameter }1redeclaration">;
3439
3440 def note_template_nontype_parm_different_type : Note<
3441   "template non-type parameter has a different type %0 in template argument">;
3442 def note_template_nontype_parm_prev_declaration : Note<
3443   "previous non-type template parameter with type %0 is here">;
3444 def err_template_nontype_parm_bad_type : Error<
3445   "a non-type template parameter cannot have type %0">;
3446 def err_template_param_default_arg_redefinition : Error<
3447   "template parameter redefines default argument">;
3448 def note_template_param_prev_default_arg : Note<
3449   "previous default template argument defined here">;
3450 def err_template_param_default_arg_missing : Error<
3451   "template parameter missing a default argument">;
3452 def ext_template_parameter_default_in_function_template : ExtWarn<
3453   "default template arguments for a function template are a C++11 extension">,
3454   InGroup<CXX11>;
3455 def warn_cxx98_compat_template_parameter_default_in_function_template : Warning<
3456   "default template arguments for a function template are incompatible with C++98">,
3457   InGroup<CXX98Compat>, DefaultIgnore;
3458 def err_template_parameter_default_template_member : Error<
3459   "cannot add a default template argument to the definition of a member of a "
3460   "class template">;
3461 def err_template_parameter_default_friend_template : Error<
3462   "default template argument not permitted on a friend template">;
3463 def err_template_template_parm_no_parms : Error<
3464   "template template parameter must have its own template parameters">;
3465
3466 def ext_variable_template : ExtWarn<"variable templates are a C++14 extension">,
3467   InGroup<CXX14>;
3468 def warn_cxx11_compat_variable_template : Warning<
3469   "variable templates are incompatible with C++ standards before C++14">,
3470   InGroup<CXXPre14Compat>, DefaultIgnore;
3471 def err_template_variable_noparams : Error<
3472   "extraneous 'template<>' in declaration of variable %0">;
3473 def err_template_member : Error<"member %0 declared as a template">;
3474 def err_template_member_noparams : Error<
3475   "extraneous 'template<>' in declaration of member %0">;
3476 def err_template_tag_noparams : Error<
3477   "extraneous 'template<>' in declaration of %0 %1">;
3478 def err_template_decl_ref : Error<
3479   "cannot refer to %select{class|variable}0 template %1 without a template argument list">;
3480
3481 // C++ Template Argument Lists
3482 def err_template_missing_args : Error<
3483   "use of class template %0 requires template arguments">;
3484 def err_template_arg_list_different_arity : Error<
3485   "%select{too few|too many}0 template arguments for "
3486   "%select{class template|function template|template template parameter"
3487   "|template}1 %2">;
3488 def note_template_decl_here : Note<"template is declared here">;
3489 def err_template_arg_must_be_type : Error<
3490   "template argument for template type parameter must be a type">;
3491 def err_template_arg_must_be_type_suggest : Error<
3492   "template argument for template type parameter must be a type; "
3493   "did you forget 'typename'?">;
3494 def ext_ms_template_type_arg_missing_typename : ExtWarn<
3495   "template argument for template type parameter must be a type; "
3496   "omitted 'typename' is a Microsoft extension">,
3497   InGroup<MicrosoftTemplate>;
3498 def err_template_arg_must_be_expr : Error<
3499   "template argument for non-type template parameter must be an expression">;
3500 def err_template_arg_nontype_ambig : Error<
3501   "template argument for non-type template parameter is treated as function type %0">;
3502 def err_template_arg_must_be_template : Error<
3503   "template argument for template template parameter must be a class template%select{| or type alias template}0">;
3504 def ext_template_arg_local_type : ExtWarn<
3505   "template argument uses local type %0">, InGroup<LocalTypeTemplateArgs>;
3506 def ext_template_arg_unnamed_type : ExtWarn<
3507   "template argument uses unnamed type">, InGroup<UnnamedTypeTemplateArgs>;
3508 def warn_cxx98_compat_template_arg_local_type : Warning<
3509   "local type %0 as template argument is incompatible with C++98">,
3510   InGroup<CXX98CompatLocalTypeTemplateArgs>, DefaultIgnore;
3511 def warn_cxx98_compat_template_arg_unnamed_type : Warning<
3512   "unnamed type as template argument is incompatible with C++98">,
3513   InGroup<CXX98CompatUnnamedTypeTemplateArgs>, DefaultIgnore;
3514 def note_template_unnamed_type_here : Note<
3515   "unnamed type used in template argument was declared here">;
3516 def err_template_arg_overload_type : Error<
3517   "template argument is the type of an unresolved overloaded function">;
3518 def err_template_arg_not_class_template : Error<
3519   "template argument does not refer to a class template or template "
3520   "template parameter">;
3521 def note_template_arg_refers_here_func : Note<
3522   "template argument refers to function template %0, here">;
3523 def err_template_arg_template_params_mismatch : Error<
3524   "template template argument has different template parameters than its "
3525   "corresponding template template parameter">;
3526 def err_template_arg_not_integral_or_enumeral : Error<
3527   "non-type template argument of type %0 must have an integral or enumeration"
3528   " type">;
3529 def err_template_arg_not_ice : Error<
3530   "non-type template argument of type %0 is not an integral constant "
3531   "expression">;
3532 def err_template_arg_not_address_constant : Error<
3533   "non-type template argument of type %0 is not a constant expression">;
3534 def warn_cxx98_compat_template_arg_null : Warning<
3535   "use of null pointer as non-type template argument is incompatible with "
3536   "C++98">, InGroup<CXX98Compat>, DefaultIgnore;
3537 def err_template_arg_untyped_null_constant : Error<
3538   "null non-type template argument must be cast to template parameter type %0">;
3539 def err_template_arg_wrongtype_null_constant : Error<
3540  "null non-type template argument of type %0 does not match template parameter "
3541  "of type %1">;
3542 def err_deduced_non_type_template_arg_type_mismatch : Error<
3543   "deduced non-type template argument does not have the same type as the "
3544   "its corresponding template parameter%diff{ ($ vs $)|}0,1">;
3545 def err_non_type_template_arg_subobject : Error<
3546   "non-type template argument refers to subobject '%0'">;
3547 def err_non_type_template_arg_addr_label_diff : Error<
3548   "template argument / label address difference / what did you expect?">;
3549 def err_template_arg_not_convertible : Error<
3550   "non-type template argument of type %0 cannot be converted to a value "
3551   "of type %1">;
3552 def warn_template_arg_negative : Warning<
3553   "non-type template argument with value '%0' converted to '%1' for unsigned "
3554   "template parameter of type %2">, InGroup<Conversion>, DefaultIgnore;
3555 def warn_template_arg_too_large : Warning<
3556   "non-type template argument value '%0' truncated to '%1' for "
3557   "template parameter of type %2">, InGroup<Conversion>, DefaultIgnore;
3558 def err_template_arg_no_ref_bind : Error<
3559   "non-type template parameter of reference type "
3560   "%diff{$ cannot bind to template argument of type $"
3561   "|cannot bind to template of incompatible argument type}0,1">;
3562 def err_template_arg_ref_bind_ignores_quals : Error<
3563   "reference binding of non-type template parameter "
3564   "%diff{of type $ to template argument of type $|to template argument}0,1 "
3565   "ignores qualifiers">;
3566 def err_template_arg_not_decl_ref : Error<
3567   "non-type template argument does not refer to any declaration">;
3568 def err_template_arg_not_address_of : Error<
3569   "non-type template argument for template parameter of pointer type %0 must "
3570   "have its address taken">;
3571 def err_template_arg_address_of_non_pointer : Error<
3572   "address taken in non-type template argument for template parameter of "
3573   "reference type %0">;
3574 def err_template_arg_reference_var : Error<
3575   "non-type template argument of reference type %0 is not an object">;
3576 def err_template_arg_field : Error<
3577   "non-type template argument refers to non-static data member %0">;
3578 def err_template_arg_method : Error<
3579   "non-type template argument refers to non-static member function %0">;
3580 def err_template_arg_object_no_linkage : Error<
3581   "non-type template argument refers to %select{function|object}0 %1 that "
3582   "does not have linkage">;
3583 def warn_cxx98_compat_template_arg_object_internal : Warning<
3584   "non-type template argument referring to %select{function|object}0 %1 with "
3585   "internal linkage is incompatible with C++98">,
3586   InGroup<CXX98Compat>, DefaultIgnore;
3587 def ext_template_arg_object_internal : ExtWarn<
3588   "non-type template argument referring to %select{function|object}0 %1 with "
3589   "internal linkage is a C++11 extension">, InGroup<CXX11>;
3590 def err_template_arg_thread_local : Error<
3591   "non-type template argument refers to thread-local object">;
3592 def note_template_arg_internal_object : Note<
3593   "non-type template argument refers to %select{function|object}0 here">;
3594 def note_template_arg_refers_here : Note<
3595   "non-type template argument refers here">;
3596 def err_template_arg_not_object_or_func : Error<
3597   "non-type template argument does not refer to an object or function">;
3598 def err_template_arg_not_pointer_to_member_form : Error<
3599   "non-type template argument is not a pointer to member constant">;
3600 def err_template_arg_member_ptr_base_derived_not_supported : Error<
3601   "sorry, non-type template argument of pointer-to-member type %1 that refers "
3602   "to member %q0 of a different class is not supported yet">;
3603 def ext_template_arg_extra_parens : ExtWarn<
3604   "address non-type template argument cannot be surrounded by parentheses">;
3605 def warn_cxx98_compat_template_arg_extra_parens : Warning<
3606   "redundant parentheses surrounding address non-type template argument are "
3607   "incompatible with C++98">, InGroup<CXX98Compat>, DefaultIgnore;
3608 def err_pointer_to_member_type : Error<
3609   "invalid use of pointer to member type after %select{.*|->*}0">;
3610 def err_pointer_to_member_call_drops_quals : Error<
3611   "call to pointer to member function of type %0 drops '%1' qualifier%s2">;
3612 def err_pointer_to_member_oper_value_classify: Error<
3613   "pointer-to-member function type %0 can only be called on an "
3614   "%select{rvalue|lvalue}1">;
3615 def ext_ms_deref_template_argument: ExtWarn<
3616   "non-type template argument containing a dereference operation is a "
3617   "Microsoft extension">, InGroup<MicrosoftTemplate>;
3618 def ext_ms_delayed_template_argument: ExtWarn<
3619   "using the undeclared type %0 as a default template argument is a "
3620   "Microsoft extension">, InGroup<MicrosoftTemplate>;
3621
3622 // C++ template specialization
3623 def err_template_spec_unknown_kind : Error<
3624   "can only provide an explicit specialization for a class template, function "
3625   "template, variable template, or a member function, static data member, "
3626   "%select{or member class|member class, or member enumeration}0 of a "
3627   "class template">;
3628 def note_specialized_entity : Note<
3629   "explicitly specialized declaration is here">;
3630 def err_template_spec_decl_function_scope : Error<
3631   "explicit specialization of %0 in function scope">;
3632 def err_template_spec_decl_class_scope : Error<
3633   "explicit specialization of %0 in class scope">;
3634 def err_template_spec_decl_friend : Error<
3635   "cannot declare an explicit specialization in a friend">;
3636 def err_template_spec_decl_out_of_scope_global : Error<
3637   "%select{class template|class template partial|variable template|"
3638   "variable template partial|function template|member function|"
3639   "static data member|member class|member enumeration}0 "
3640   "specialization of %1 must originally be declared in the global scope">;
3641 def err_template_spec_decl_out_of_scope : Error<
3642   "%select{class template|class template partial|variable template|"
3643   "variable template partial|function template|member "
3644   "function|static data member|member class|member enumeration}0 "
3645   "specialization of %1 must originally be declared in namespace %2">;
3646 def ext_template_spec_decl_out_of_scope : ExtWarn<
3647   "first declaration of %select{class template|class template partial|"
3648   "variable template|variable template partial|"
3649   "function template|member function|static data member|member class|"
3650   "member enumeration}0 specialization of %1 outside namespace %2 is a "
3651   "C++11 extension">, InGroup<CXX11>;
3652 def warn_cxx98_compat_template_spec_decl_out_of_scope : Warning<
3653   "%select{class template|class template partial|variable template|"
3654   "variable template partial|function template|member "
3655   "function|static data member|member class|member enumeration}0 "
3656   "specialization of %1 outside namespace %2 is incompatible with C++98">,
3657   InGroup<CXX98Compat>, DefaultIgnore;
3658 def err_template_spec_redecl_out_of_scope : Error<
3659   "%select{class template|class template partial|variable template|"
3660   "variable template partial|function template|member "
3661   "function|static data member|member class|member enumeration}0 "
3662   "specialization of %1 not in a namespace enclosing %2">;
3663 def ext_ms_template_spec_redecl_out_of_scope: ExtWarn<
3664   "%select{class template|class template partial|variable template|"
3665   "variable template partial|function template|member "
3666   "function|static data member|member class|member enumeration}0 "
3667   "specialization of %1 outside namespace enclosing %2 "
3668   "is a Microsoft extension">, InGroup<MicrosoftTemplate>;
3669 def err_template_spec_redecl_global_scope : Error<
3670   "%select{class template|class template partial|variable template|"
3671   "variable template partial|function template|member "
3672   "function|static data member|member class|member enumeration}0 "
3673   "specialization of %1 must occur at global scope">;
3674 def err_spec_member_not_instantiated : Error<
3675   "specialization of member %q0 does not specialize an instantiated member">;
3676 def note_specialized_decl : Note<"attempt to specialize declaration here">;
3677 def err_specialization_after_instantiation : Error<
3678   "explicit specialization of %0 after instantiation">;
3679 def note_instantiation_required_here : Note<
3680   "%select{implicit|explicit}0 instantiation first required here">;
3681 def err_template_spec_friend : Error<
3682   "template specialization declaration cannot be a friend">;
3683 def err_template_spec_default_arg : Error<
3684   "default argument not permitted on an explicit "
3685   "%select{instantiation|specialization}0 of function %1">;
3686 def err_not_class_template_specialization : Error<
3687   "cannot specialize a %select{dependent template|template template "
3688   "parameter}0">;
3689 def err_function_specialization_in_class : Error<
3690   "cannot specialize a function %0 within class scope">;
3691 def ext_function_specialization_in_class : ExtWarn<
3692   "explicit specialization of %0 within class scope is a Microsoft extension">,
3693   InGroup<MicrosoftTemplate>;
3694 def ext_explicit_specialization_storage_class : ExtWarn<
3695   "explicit specialization cannot have a storage class">;
3696 def err_explicit_specialization_inconsistent_storage_class : Error<
3697   "explicit specialization has extraneous, inconsistent storage class "
3698   "'%select{none|extern|static|__private_extern__|auto|register}0'">;
3699
3700 // C++ class template specializations and out-of-line definitions
3701 def err_template_spec_needs_header : Error<
3702   "template specialization requires 'template<>'">;
3703 def err_template_spec_needs_template_parameters : Error<
3704   "template specialization or definition requires a template parameter list "
3705   "corresponding to the nested type %0">;
3706 def err_template_param_list_matches_nontemplate : Error<
3707   "template parameter list matching the non-templated nested type %0 should "
3708   "be empty ('template<>')">;
3709 def err_alias_template_extra_headers : Error<
3710   "extraneous template parameter list in alias template declaration">;
3711 def err_template_spec_extra_headers : Error<
3712   "extraneous template parameter list in template specialization or "
3713   "out-of-line template definition">;
3714 def warn_template_spec_extra_headers : Warning<
3715   "extraneous template parameter list in template specialization">;
3716 def note_explicit_template_spec_does_not_need_header : Note<
3717   "'template<>' header not required for explicitly-specialized class %0 "
3718   "declared here">;
3719 def err_template_qualified_declarator_no_match : Error<
3720   "nested name specifier '%0' for declaration does not refer into a class, "
3721   "class template or class template partial specialization">;
3722 def err_specialize_member_of_template : Error<
3723   "cannot specialize %select{|(with 'template<>') }0a member of an "
3724   "unspecialized template">;
3725
3726 // C++ Class Template Partial Specialization
3727 def err_default_arg_in_partial_spec : Error<
3728     "default template argument in a class template partial specialization">;
3729 def err_dependent_non_type_arg_in_partial_spec : Error<
3730     "non-type template argument depends on a template parameter of the "
3731     "partial specialization">;
3732 def note_dependent_non_type_default_arg_in_partial_spec : Note<
3733     "template parameter is used in default argument declared here">;
3734 def err_dependent_typed_non_type_arg_in_partial_spec : Error<
3735     "non-type template argument specializes a template parameter with "
3736     "dependent type %0">;
3737 def err_partial_spec_args_match_primary_template : Error<
3738     "%select{class|variable}0 template partial specialization does not "
3739     "specialize any template argument; to %select{declare|define}1 the "
3740     "primary template, remove the template argument list">; 
3741 def warn_partial_specs_not_deducible : Warning<
3742     "%select{class|variable}0 template partial specialization contains "
3743     "%select{a template parameter|template parameters}1 that cannot be "
3744     "deduced; this partial specialization will never be used">;
3745 def note_partial_spec_unused_parameter : Note<
3746     "non-deducible template parameter %0">;
3747 def err_partial_spec_ordering_ambiguous : Error<
3748     "ambiguous partial specializations of %0">;
3749 def note_partial_spec_match : Note<"partial specialization matches %0">;
3750 def err_partial_spec_redeclared : Error<
3751   "class template partial specialization %0 cannot be redeclared">;
3752 def note_prev_partial_spec_here : Note<
3753   "previous declaration of class template partial specialization %0 is here">;
3754 def err_partial_spec_fully_specialized : Error<
3755   "partial specialization of %0 does not use any of its template parameters">;
3756
3757 // C++ Variable Template Partial Specialization
3758 def err_var_partial_spec_redeclared : Error<
3759   "variable template partial specialization %0 cannot be redefined">;
3760 def note_var_prev_partial_spec_here : Note<
3761   "previous declaration of variable template partial specialization is here">;
3762 def err_var_spec_no_template : Error<
3763   "no variable template matches%select{| partial}0 specialization">;
3764 def err_var_spec_no_template_but_method : Error<
3765   "no variable template matches specialization; "
3766   "did you mean to use %0 as function template instead?">;
3767   
3768 // C++ Function template specializations
3769 def err_function_template_spec_no_match : Error<
3770     "no function template matches function template specialization %0">;
3771 def err_function_template_spec_ambiguous : Error<
3772     "function template specialization %0 ambiguously refers to more than one "
3773     "function template; explicitly specify%select{| additional}1 template "
3774     "arguments to identify a particular function template">;
3775 def note_function_template_spec_matched : Note<
3776     "function template matches specialization %0">;
3777 def err_function_template_partial_spec : Error<
3778     "function template partial specialization is not allowed">;
3779
3780 // C++ Template Instantiation
3781 def err_template_recursion_depth_exceeded : Error<
3782   "recursive template instantiation exceeded maximum depth of %0">,
3783   DefaultFatal, NoSFINAE;
3784 def note_template_recursion_depth : Note<
3785   "use -ftemplate-depth=N to increase recursive template instantiation depth">;
3786
3787 def err_template_instantiate_within_definition : Error<
3788   "%select{implicit|explicit}0 instantiation of template %1 within its"
3789   " own definition">;
3790 def err_template_instantiate_undefined : Error<
3791   "%select{implicit|explicit}0 instantiation of undefined template %1">;
3792 def err_implicit_instantiate_member_undefined : Error<
3793   "implicit instantiation of undefined member %0">;
3794 def note_template_class_instantiation_was_here : Note<
3795   "class template %0 was instantiated here">;
3796 def note_template_class_explicit_specialization_was_here : Note<
3797   "class template %0 was explicitly specialized here">;
3798 def note_template_class_instantiation_here : Note<
3799   "in instantiation of template class %0 requested here">;
3800 def note_template_member_class_here : Note<
3801   "in instantiation of member class %0 requested here">;
3802 def note_template_member_function_here : Note<
3803   "in instantiation of member function %q0 requested here">;
3804 def note_function_template_spec_here : Note<
3805   "in instantiation of function template specialization %q0 requested here">;
3806 def note_template_static_data_member_def_here : Note<
3807   "in instantiation of static data member %q0 requested here">;
3808 def note_template_variable_def_here : Note<
3809   "in instantiation of variable template specialization %q0 requested here">;
3810 def note_template_enum_def_here : Note<
3811   "in instantiation of enumeration %q0 requested here">;
3812 def note_template_nsdmi_here : Note<
3813   "in instantiation of default member initializer %q0 requested here">;
3814 def note_template_type_alias_instantiation_here : Note<
3815   "in instantiation of template type alias %0 requested here">;
3816 def note_template_exception_spec_instantiation_here : Note<
3817   "in instantiation of exception specification for %0 requested here">;
3818   
3819 def note_default_arg_instantiation_here : Note<
3820   "in instantiation of default argument for '%0' required here">;
3821 def note_default_function_arg_instantiation_here : Note<
3822   "in instantiation of default function argument expression "
3823   "for '%0' required here">;
3824 def note_explicit_template_arg_substitution_here : Note<
3825   "while substituting explicitly-specified template arguments into function "
3826   "template %0 %1">;
3827 def note_function_template_deduction_instantiation_here : Note<
3828   "while substituting deduced template arguments into function template %0 "
3829   "%1">;
3830 def note_partial_spec_deduct_instantiation_here : Note<
3831   "during template argument deduction for class template partial "
3832   "specialization %0 %1">;
3833 def note_prior_template_arg_substitution : Note<
3834   "while substituting prior template arguments into %select{non-type|template}0"
3835   " template parameter%1 %2">;
3836 def note_template_default_arg_checking : Note<
3837   "while checking a default template argument used here">;
3838 def note_instantiation_contexts_suppressed : Note<
3839   "(skipping %0 context%s0 in backtrace; use -ftemplate-backtrace-limit=0 to "
3840   "see all)">;
3841
3842 def err_field_instantiates_to_function : Error<
3843   "data member instantiated with function type %0">;
3844 def err_variable_instantiates_to_function : Error<
3845   "%select{variable|static data member}0 instantiated with function type %1">;
3846 def err_nested_name_spec_non_tag : Error<
3847   "type %0 cannot be used prior to '::' because it has no members">;
3848
3849 // C++ Explicit Instantiation
3850 def err_explicit_instantiation_duplicate : Error<
3851     "duplicate explicit instantiation of %0">;
3852 def ext_explicit_instantiation_duplicate : ExtWarn<
3853     "duplicate explicit instantiation of %0 ignored as a Microsoft extension">,
3854     InGroup<MicrosoftTemplate>;
3855 def note_previous_explicit_instantiation : Note<
3856     "previous explicit instantiation is here">;
3857 def ext_explicit_instantiation_after_specialization : Extension<
3858     "explicit instantiation of %0 that occurs after an explicit "
3859     "specialization will be ignored (C++11 extension)">,
3860     InGroup<CXX11>;
3861 def warn_cxx98_compat_explicit_instantiation_after_specialization : Warning<
3862     "explicit instantiation of %0 that occurs after an explicit "
3863     "specialization is incompatible with C++98">,
3864     InGroup<CXX98CompatPedantic>, DefaultIgnore;
3865 def note_previous_template_specialization : Note<
3866     "previous template specialization is here">;
3867 def err_explicit_instantiation_nontemplate_type : Error<
3868     "explicit instantiation of non-templated type %0">;
3869 def note_nontemplate_decl_here : Note<
3870     "non-templated declaration is here">;
3871 def err_explicit_instantiation_in_class : Error<
3872   "explicit instantiation of %0 in class scope">;
3873 def err_explicit_instantiation_out_of_scope : Error<
3874   "explicit instantiation of %0 not in a namespace enclosing %1">;
3875 def err_explicit_instantiation_must_be_global : Error<
3876   "explicit instantiation of %0 must occur at global scope">;
3877 def warn_explicit_instantiation_out_of_scope_0x : Warning<
3878   "explicit instantiation of %0 not in a namespace enclosing %1">, 
3879   InGroup<CXX11Compat>, DefaultIgnore;
3880 def warn_explicit_instantiation_must_be_global_0x : Warning<
3881   "explicit instantiation of %0 must occur at global scope">, 
3882   InGroup<CXX11Compat>, DefaultIgnore;
3883   
3884 def err_explicit_instantiation_requires_name : Error<
3885   "explicit instantiation declaration requires a name">;
3886 def err_explicit_instantiation_of_typedef : Error<
3887   "explicit instantiation of typedef %0">;
3888 def err_explicit_instantiation_storage_class : Error<
3889   "explicit instantiation cannot have a storage class">;
3890 def err_explicit_instantiation_not_known : Error<
3891   "explicit instantiation of %0 does not refer to a function template, "
3892   "variable template, member function, member class, or static data member">;
3893 def note_explicit_instantiation_here : Note<
3894   "explicit instantiation refers here">;
3895 def err_explicit_instantiation_data_member_not_instantiated : Error<
3896   "explicit instantiation refers to static data member %q0 that is not an "
3897   "instantiation">;
3898 def err_explicit_instantiation_member_function_not_instantiated : Error<
3899   "explicit instantiation refers to member function %q0 that is not an "
3900   "instantiation">;
3901 def err_explicit_instantiation_ambiguous : Error<
3902   "partial ordering for explicit instantiation of %0 is ambiguous">;
3903 def note_explicit_instantiation_candidate : Note<
3904   "explicit instantiation candidate function template here %0">;
3905 def err_explicit_instantiation_inline : Error<
3906   "explicit instantiation cannot be 'inline'">;
3907 def warn_explicit_instantiation_inline_0x : Warning<
3908   "explicit instantiation cannot be 'inline'">, InGroup<CXX11Compat>,
3909   DefaultIgnore;
3910 def err_explicit_instantiation_constexpr : Error<
3911   "explicit instantiation cannot be 'constexpr'">;
3912 def ext_explicit_instantiation_without_qualified_id : Extension<
3913   "qualifier in explicit instantiation of %q0 requires a template-id "
3914   "(a typedef is not permitted)">;
3915 def err_explicit_instantiation_without_template_id : Error<
3916   "explicit instantiation of %q0 must specify a template argument list">;
3917 def err_explicit_instantiation_unqualified_wrong_namespace : Error<
3918   "explicit instantiation of %q0 must occur in namespace %1">;
3919 def warn_explicit_instantiation_unqualified_wrong_namespace_0x : Warning<
3920   "explicit instantiation of %q0 must occur in namespace %1">,
3921   InGroup<CXX11Compat>, DefaultIgnore;
3922 def err_explicit_instantiation_undefined_member : Error<
3923   "explicit instantiation of undefined %select{member class|member function|"
3924   "static data member}0 %1 of class template %2">;
3925 def err_explicit_instantiation_undefined_func_template : Error<
3926   "explicit instantiation of undefined function template %0">;
3927 def err_explicit_instantiation_undefined_var_template : Error<
3928   "explicit instantiation of undefined variable template %q0">;
3929 def err_explicit_instantiation_declaration_after_definition : Error<
3930   "explicit instantiation declaration (with 'extern') follows explicit "
3931   "instantiation definition (without 'extern')">;
3932 def note_explicit_instantiation_definition_here : Note<
3933   "explicit instantiation definition is here">;
3934 def err_invalid_var_template_spec_type : Error<"type %2 "
3935   "of %select{explicit instantiation|explicit specialization|"
3936   "partial specialization|redeclaration}0 of %1 does not match"
3937   " expected type %3">;
3938 def err_mismatched_exception_spec_explicit_instantiation : Error<
3939   "exception specification in explicit instantiation does not match "
3940   "instantiated one">;
3941 def ext_mismatched_exception_spec_explicit_instantiation : ExtWarn<
3942   err_mismatched_exception_spec_explicit_instantiation.Text>,
3943   InGroup<MicrosoftExceptionSpec>;
3944   
3945 // C++ typename-specifiers
3946 def err_typename_nested_not_found : Error<"no type named %0 in %1">;
3947 def err_typename_nested_not_found_enable_if : Error<
3948   "no type named 'type' in %0; 'enable_if' cannot be used to disable "
3949   "this declaration">;
3950 def err_typename_nested_not_type : Error<
3951     "typename specifier refers to non-type member %0 in %1">;
3952 def note_typename_refers_here : Note<
3953     "referenced member %0 is declared here">;
3954 def err_typename_missing : Error<
3955   "missing 'typename' prior to dependent type name '%0%1'">;
3956 def ext_typename_missing : ExtWarn<
3957   "missing 'typename' prior to dependent type name '%0%1'">,
3958   InGroup<DiagGroup<"typename-missing">>;
3959 def ext_typename_outside_of_template : ExtWarn<
3960   "'typename' occurs outside of a template">, InGroup<CXX11>;
3961 def warn_cxx98_compat_typename_outside_of_template : Warning<
3962   "use of 'typename' outside of a template is incompatible with C++98">,
3963   InGroup<CXX98Compat>, DefaultIgnore;
3964 def err_typename_refers_to_using_value_decl : Error<
3965   "typename specifier refers to a dependent using declaration for a value "
3966   "%0 in %1">;
3967 def note_using_value_decl_missing_typename : Note<
3968   "add 'typename' to treat this using declaration as a type">;
3969
3970 def err_template_kw_refers_to_non_template : Error<
3971   "%0 following the 'template' keyword does not refer to a template">;
3972 def err_template_kw_refers_to_class_template : Error<
3973   "'%0%1' instantiated to a class template, not a function template">;
3974 def note_referenced_class_template : Error<
3975   "class template declared here">;
3976 def err_template_kw_missing : Error<
3977   "missing 'template' keyword prior to dependent template name '%0%1'">;
3978 def ext_template_outside_of_template : ExtWarn<
3979   "'template' keyword outside of a template">, InGroup<CXX11>;
3980 def warn_cxx98_compat_template_outside_of_template : Warning<
3981   "use of 'template' keyword outside of a template is incompatible with C++98">,
3982   InGroup<CXX98Compat>, DefaultIgnore;
3983
3984 def err_non_type_template_in_nested_name_specifier : Error<
3985   "qualified name refers into a specialization of %select{function|variable}0 "
3986   "template %1">;
3987 def err_template_id_not_a_type : Error<
3988   "template name refers to non-type template %0">;
3989 def note_template_declared_here : Note<
3990   "%select{function template|class template|variable template"
3991   "|type alias template|template template parameter}0 "
3992   "%1 declared here">;
3993 def err_alias_template_expansion_into_fixed_list : Error<
3994   "pack expansion used as argument for non-pack parameter of alias template">;
3995 def note_parameter_type : Note<
3996   "parameter of type %0 is declared here">;
3997
3998 // C++11 Variadic Templates
3999 def err_template_param_pack_default_arg : Error<
4000   "template parameter pack cannot have a default argument">;
4001 def err_template_param_pack_must_be_last_template_parameter : Error<
4002   "template parameter pack must be the last template parameter">;
4003
4004 def err_template_parameter_pack_non_pack : Error<
4005   "%select{template type|non-type template|template template}0 parameter"
4006   "%select{| pack}1 conflicts with previous %select{template type|"
4007   "non-type template|template template}0 parameter%select{ pack|}1">;
4008 def note_template_parameter_pack_non_pack : Note<
4009   "%select{template type|non-type template|template template}0 parameter"
4010   "%select{| pack}1 does not match %select{template type|non-type template"
4011   "|template template}0 parameter%select{ pack|}1 in template argument">;
4012 def note_template_parameter_pack_here : Note<
4013   "previous %select{template type|non-type template|template template}0 "
4014   "parameter%select{| pack}1 declared here">;
4015   
4016 def err_unexpanded_parameter_pack : Error<
4017   "%select{expression|base type|declaration type|data member type|bit-field "
4018   "size|static assertion|fixed underlying type|enumerator value|"
4019   "using declaration|friend declaration|qualifier|initializer|default argument|"
4020   "non-type template parameter type|exception type|partial specialization|"
4021   "__if_exists name|__if_not_exists name|lambda|block}0 contains"
4022   "%plural{0: an|:}1 unexpanded parameter pack"
4023   "%plural{0:|1: %2|2:s %2 and %3|:s %2, %3, ...}1">;
4024
4025 def err_pack_expansion_without_parameter_packs : Error<
4026   "pack expansion does not contain any unexpanded parameter packs">;
4027 def err_pack_expansion_length_conflict : Error<
4028   "pack expansion contains parameter packs %0 and %1 that have different "
4029   "lengths (%2 vs. %3)">;
4030 def err_pack_expansion_length_conflict_multilevel : Error<
4031   "pack expansion contains parameter pack %0 that has a different "
4032   "length (%1 vs. %2) from outer parameter packs">;
4033 def err_pack_expansion_member_init : Error<
4034   "pack expansion for initialization of member %0">;
4035
4036 def err_function_parameter_pack_without_parameter_packs : Error<
4037   "type %0 of function parameter pack does not contain any unexpanded "
4038   "parameter packs">;
4039 def err_ellipsis_in_declarator_not_parameter : Error<
4040   "only function and template parameters can be parameter packs">;
4041
4042 def err_sizeof_pack_no_pack_name : Error<
4043   "%0 does not refer to the name of a parameter pack">;
4044
4045 def err_fold_expression_packs_both_sides : Error<
4046   "binary fold expression has unexpanded parameter packs in both operands">;
4047 def err_fold_expression_empty : Error<
4048   "unary fold expression has empty expansion for operator '%0' "
4049   "with no fallback value">;
4050 def err_fold_expression_bad_operand : Error<
4051   "expression not permitted as operand of fold expression">;
4052
4053 def err_unexpected_typedef : Error<
4054   "unexpected type name %0: expected expression">;
4055 def err_unexpected_namespace : Error<
4056   "unexpected namespace name %0: expected expression">;
4057 def err_undeclared_var_use : Error<"use of undeclared identifier %0">;
4058 def ext_undeclared_unqual_id_with_dependent_base : ExtWarn<
4059   "use of undeclared identifier %0; "
4060   "unqualified lookup into dependent bases of class template %1 is a Microsoft extension">,
4061   InGroup<MicrosoftTemplate>;
4062 def ext_found_via_dependent_bases_lookup : ExtWarn<"use of identifier %0 "
4063   "found via unqualified lookup into dependent bases of class templates is a "
4064   "Microsoft extension">, InGroup<MicrosoftTemplate>;
4065 def note_dependent_var_use : Note<"must qualify identifier to find this "
4066     "declaration in dependent base class">;
4067 def err_not_found_by_two_phase_lookup : Error<"call to function %0 that is neither "
4068     "visible in the template definition nor found by argument-dependent lookup">;
4069 def note_not_found_by_two_phase_lookup : Note<"%0 should be declared prior to the "
4070     "call site%select{| or in %2| or in an associated namespace of one of its arguments}1">;
4071 def err_undeclared_use : Error<"use of undeclared %0">;
4072 def warn_partial_availability : Warning<"%0 is only available conditionally">,
4073     InGroup<PartialAvailability>, DefaultIgnore;
4074 def note_partial_availability_silence : Note<
4075   "explicitly redeclare %0 to silence this warning">;
4076 def warn_partial_message : Warning<"%0 is partial: %1">,
4077     InGroup<PartialAvailability>, DefaultIgnore;
4078 def warn_partial_fwdclass_message : Warning<
4079     "%0 may be partial because the receiver type is unknown">,
4080     InGroup<PartialAvailability>, DefaultIgnore;
4081 def warn_deprecated : Warning<"%0 is deprecated">,
4082     InGroup<DeprecatedDeclarations>;
4083 def warn_property_method_deprecated :
4084     Warning<"property access is using %0 method which is deprecated">,
4085     InGroup<DeprecatedDeclarations>;
4086 def warn_deprecated_message : Warning<"%0 is deprecated: %1">,
4087     InGroup<DeprecatedDeclarations>;
4088 def warn_deprecated_anonymous_namespace : Warning<
4089   "'deprecated' attribute on anonymous namespace ignored">,
4090   InGroup<IgnoredAttributes>;
4091 def warn_deprecated_fwdclass_message : Warning<
4092     "%0 may be deprecated because the receiver type is unknown">,
4093     InGroup<DeprecatedDeclarations>;
4094 def warn_deprecated_def : Warning<
4095     "Implementing deprecated %select{method|class|category}0">,
4096     InGroup<DeprecatedImplementations>, DefaultIgnore;
4097 def err_unavailable : Error<"%0 is unavailable">;
4098 def err_property_method_unavailable :
4099     Error<"property access is using %0 method which is unavailable">;
4100 def err_unavailable_message : Error<"%0 is unavailable: %1">;
4101 def warn_unavailable_fwdclass_message : Warning<
4102     "%0 may be unavailable because the receiver type is unknown">,
4103     InGroup<UnavailableDeclarations>;
4104 def note_availability_specified_here : Note<
4105   "%0 has been explicitly marked "
4106   "%select{unavailable|deleted|deprecated|partial}1 here">;
4107 def note_implicitly_deleted : Note<
4108   "explicitly defaulted function was implicitly deleted here">;
4109 def note_inherited_deleted_here : Note<
4110   "deleted constructor was inherited here">;
4111 def note_cannot_inherit : Note<
4112   "constructor cannot be inherited">;
4113 def warn_not_enough_argument : Warning<
4114   "not enough variable arguments in %0 declaration to fit a sentinel">,
4115   InGroup<Sentinel>;
4116 def warn_missing_sentinel : Warning <
4117   "missing sentinel in %select{function call|method dispatch|block call}0">,
4118   InGroup<Sentinel>;
4119 def note_sentinel_here : Note<
4120   "%select{function|method|block}0 has been explicitly marked sentinel here">;
4121 def warn_missing_prototype : Warning<
4122   "no previous prototype for function %0">,
4123   InGroup<DiagGroup<"missing-prototypes">>, DefaultIgnore;
4124 def note_declaration_not_a_prototype : Note<
4125   "this declaration is not a prototype; add 'void' to make it a prototype for a zero-parameter function">; 
4126 def warn_missing_variable_declarations : Warning<
4127   "no previous extern declaration for non-static variable %0">,
4128   InGroup<DiagGroup<"missing-variable-declarations">>, DefaultIgnore;
4129 def err_static_data_member_reinitialization :
4130   Error<"static data member %0 already has an initializer">;
4131 def err_redefinition : Error<"redefinition of %0">;
4132 def err_alias_after_tentative :
4133   Error<"alias definition of %0 after tentative definition">;
4134 def err_alias_is_definition :
4135   Error<"definition %0 cannot also be an alias">;
4136 def err_definition_of_implicitly_declared_member : Error<
4137   "definition of implicitly declared %select{default constructor|copy "
4138   "constructor|move constructor|copy assignment operator|move assignment "
4139   "operator|destructor|function}1">;
4140 def err_definition_of_explicitly_defaulted_member : Error<
4141   "definition of explicitly defaulted %select{default constructor|copy "
4142   "constructor|move constructor|copy assignment operator|move assignment "
4143   "operator|destructor}0">;
4144 def err_redefinition_extern_inline : Error<
4145   "redefinition of a 'extern inline' function %0 is not supported in "
4146   "%select{C99 mode|C++}1">;
4147
4148 def note_deleted_dtor_no_operator_delete : Note<
4149   "virtual destructor requires an unambiguous, accessible 'operator delete'">;
4150 def note_deleted_special_member_class_subobject : Note<
4151   "%select{default constructor|copy constructor|move constructor|"
4152   "copy assignment operator|move assignment operator|destructor}0 of "
4153   "%1 is implicitly deleted because "
4154   "%select{base class %3|%select{||||variant }4field %3}2 has "
4155   "%select{no|a deleted|multiple|an inaccessible|a non-trivial}4 "
4156   "%select{%select{default constructor|copy constructor|move constructor|copy "
4157   "assignment operator|move assignment operator|destructor}0|destructor}5"
4158   "%select{||s||}4">;
4159 def note_deleted_default_ctor_uninit_field : Note<
4160   "default constructor of %0 is implicitly deleted because field %1 of "
4161   "%select{reference|const-qualified}3 type %2 would not be initialized">;
4162 def note_deleted_default_ctor_all_const : Note<
4163   "default constructor of %0 is implicitly deleted because all "
4164   "%select{data members|data members of an anonymous union member}1"
4165   " are const-qualified">;
4166 def note_deleted_copy_ctor_rvalue_reference : Note<
4167   "copy constructor of %0 is implicitly deleted because field %1 is of "
4168   "rvalue reference type %2">;
4169 def note_deleted_copy_user_declared_move : Note<
4170   "copy %select{constructor|assignment operator}0 is implicitly deleted because"
4171   " %1 has a user-declared move %select{constructor|assignment operator}2">;
4172 def note_deleted_assign_field : Note<
4173   "%select{copy|move}0 assignment operator of %1 is implicitly deleted "
4174   "because field %2 is of %select{reference|const-qualified}4 type %3">;
4175
4176 // These should be errors.
4177 def warn_undefined_internal : Warning<
4178   "%select{function|variable}0 %q1 has internal linkage but is not defined">,
4179   InGroup<DiagGroup<"undefined-internal">>;
4180 def warn_undefined_inline : Warning<"inline function %q0 is not defined">,
4181   InGroup<DiagGroup<"undefined-inline">>;
4182 def note_used_here : Note<"used here">;
4183
4184 def err_internal_linkage_redeclaration : Error<
4185   "'internal_linkage' attribute does not appear on the first declaration of %0">;
4186 def warn_internal_linkage_local_storage : Warning<
4187   "'internal_linkage' attribute on a non-static local variable is ignored">,
4188   InGroup<IgnoredAttributes>;
4189
4190 def ext_internal_in_extern_inline : ExtWarn<
4191   "static %select{function|variable}0 %1 is used in an inline function with "
4192   "external linkage">, InGroup<StaticInInline>;
4193 def ext_internal_in_extern_inline_quiet : Extension<
4194   "static %select{function|variable}0 %1 is used in an inline function with "
4195   "external linkage">, InGroup<StaticInInline>;
4196 def warn_static_local_in_extern_inline : Warning<
4197   "non-constant static local variable in inline function may be different "
4198   "in different files">, InGroup<StaticLocalInInline>;
4199 def note_convert_inline_to_static : Note<
4200   "use 'static' to give inline function %0 internal linkage">;
4201
4202 def ext_redefinition_of_typedef : ExtWarn<
4203   "redefinition of typedef %0 is a C11 feature">,
4204   InGroup<DiagGroup<"typedef-redefinition"> >;
4205 def err_redefinition_variably_modified_typedef : Error<
4206   "redefinition of %select{typedef|type alias}0 for variably-modified type %1">;
4207
4208 def err_inline_decl_follows_def : Error<
4209   "inline declaration of %0 follows non-inline definition">;
4210 def err_inline_declaration_block_scope : Error<
4211   "inline declaration of %0 not allowed in block scope">;
4212 def err_static_non_static : Error<
4213   "static declaration of %0 follows non-static declaration">;
4214 def err_different_language_linkage : Error<
4215   "declaration of %0 has a different language linkage">;
4216 def ext_retained_language_linkage : Extension<
4217   "friend function %0 retaining previous language linkage is an extension">,
4218   InGroup<DiagGroup<"retained-language-linkage">>;
4219 def err_extern_c_global_conflict : Error<
4220   "declaration of %1 %select{with C language linkage|in global scope}0 "
4221   "conflicts with declaration %select{in global scope|with C language linkage}0">;
4222 def note_extern_c_global_conflict : Note<
4223   "declared %select{in global scope|with C language linkage}0 here">;
4224 def warn_weak_import : Warning <
4225   "an already-declared variable is made a weak_import declaration %0">;
4226 def ext_static_non_static : Extension<
4227   "redeclaring non-static %0 as static is a Microsoft extension">,
4228   InGroup<MicrosoftRedeclareStatic>;
4229 def err_non_static_static : Error<
4230   "non-static declaration of %0 follows static declaration">;
4231 def err_extern_non_extern : Error<
4232   "extern declaration of %0 follows non-extern declaration">;
4233 def err_non_extern_extern : Error<
4234   "non-extern declaration of %0 follows extern declaration">;
4235 def err_non_thread_thread : Error<
4236   "non-thread-local declaration of %0 follows thread-local declaration">;
4237 def err_thread_non_thread : Error<
4238   "thread-local declaration of %0 follows non-thread-local declaration">;
4239 def err_thread_thread_different_kind : Error<
4240   "thread-local declaration of %0 with %select{static|dynamic}1 initialization "
4241   "follows declaration with %select{dynamic|static}1 initialization">;
4242 def err_redefinition_different_type : Error<
4243   "redefinition of %0 with a different type%diff{: $ vs $|}1,2">;
4244 def err_redefinition_different_kind : Error<
4245   "redefinition of %0 as different kind of symbol">;
4246 def err_redefinition_different_namespace_alias : Error<
4247   "redefinition of %0 as an alias for a different namespace">;
4248 def note_previous_namespace_alias : Note<
4249   "previously defined as an alias for %0">;
4250 def warn_forward_class_redefinition : Warning<
4251   "redefinition of forward class %0 of a typedef name of an object type is ignored">,
4252   InGroup<DiagGroup<"objc-forward-class-redefinition">>;
4253 def err_redefinition_different_typedef : Error<
4254   "%select{typedef|type alias|type alias template}0 "
4255   "redefinition with different types%diff{ ($ vs $)|}1,2">;
4256 def err_tag_reference_non_tag : Error<
4257   "elaborated type refers to %select{a non-tag type|a typedef|a type alias|a template|a type alias template}0">;
4258 def err_tag_reference_conflict : Error<
4259   "implicit declaration introduced by elaborated type conflicts with "
4260   "%select{a declaration|a typedef|a type alias|a template}0 of the same name">;
4261 def err_dependent_tag_decl : Error<
4262   "%select{declaration|definition}0 of "
4263   "%select{struct|interface|union|class|enum}1 in a dependent scope">;
4264 def err_tag_definition_of_typedef : Error<
4265   "definition of type %0 conflicts with %select{typedef|type alias}1 of the same name">;
4266 def err_conflicting_types : Error<"conflicting types for %0">;
4267 def err_different_pass_object_size_params : Error<
4268   "conflicting pass_object_size attributes on parameters">;
4269 def err_late_asm_label_name : Error<
4270   "cannot apply asm label to %select{variable|function}0 after its first use">;
4271 def err_different_asm_label : Error<"conflicting asm label">;
4272 def err_nested_redefinition : Error<"nested redefinition of %0">;
4273 def err_use_with_wrong_tag : Error<
4274   "use of %0 with tag type that does not match previous declaration">;
4275 def warn_struct_class_tag_mismatch : Warning<
4276     "%select{struct|interface|class}0%select{| template}1 %2 was previously "
4277     "declared as a %select{struct|interface|class}3%select{| template}1">,
4278     InGroup<MismatchedTags>, DefaultIgnore;
4279 def warn_struct_class_previous_tag_mismatch : Warning<
4280     "%2 defined as %select{a struct|an interface|a class}0%select{| template}1 "
4281     "here but previously declared as "
4282     "%select{a struct|an interface|a class}3%select{| template}1">,
4283      InGroup<MismatchedTags>, DefaultIgnore;
4284 def note_struct_class_suggestion : Note<
4285     "did you mean %select{struct|interface|class}0 here?">;
4286 def ext_forward_ref_enum : Extension<
4287   "ISO C forbids forward references to 'enum' types">;
4288 def err_forward_ref_enum : Error<
4289   "ISO C++ forbids forward references to 'enum' types">;
4290 def ext_ms_forward_ref_enum : Extension<
4291   "forward references to 'enum' types are a Microsoft extension">,
4292   InGroup<MicrosoftEnumForwardReference>;
4293 def ext_forward_ref_enum_def : Extension<
4294   "redeclaration of already-defined enum %0 is a GNU extension">,
4295   InGroup<GNURedeclaredEnum>;
4296   
4297 def err_redefinition_of_enumerator : Error<"redefinition of enumerator %0">;
4298 def err_duplicate_member : Error<"duplicate member %0">;
4299 def err_misplaced_ivar : Error<
4300   "instance variables may not be placed in %select{categories|class extension}0">;
4301 def warn_ivars_in_interface : Warning<
4302   "declaration of instance variables in the interface is deprecated">,
4303   InGroup<DiagGroup<"objc-interface-ivars">>, DefaultIgnore;
4304 def ext_enum_value_not_int : Extension<
4305   "ISO C restricts enumerator values to range of 'int' (%0 is too "
4306   "%select{small|large}1)">;
4307 def ext_enum_too_large : ExtWarn<
4308   "enumeration values exceed range of largest integer">, InGroup<EnumTooLarge>;
4309 def ext_enumerator_increment_too_large : ExtWarn<
4310   "incremented enumerator value %0 is not representable in the "
4311   "largest integer type">, InGroup<EnumTooLarge>;
4312 def warn_flag_enum_constant_out_of_range : Warning<
4313   "enumeration value %0 is out of range of flags in enumeration type %1">,
4314   InGroup<FlagEnum>;
4315   
4316 def warn_illegal_constant_array_size : Extension<
4317   "size of static array must be an integer constant expression">;
4318 def err_vm_decl_in_file_scope : Error<
4319   "variably modified type declaration not allowed at file scope">;
4320 def err_vm_decl_has_extern_linkage : Error<
4321   "variably modified type declaration cannot have 'extern' linkage">;
4322 def err_typecheck_field_variable_size : Error<
4323   "fields must have a constant size: 'variable length array in structure' "
4324   "extension will never be supported">;
4325 def err_vm_func_decl : Error<
4326   "function declaration cannot have variably modified type">;
4327 def err_array_too_large : Error<
4328   "array is too large (%0 elements)">;
4329 def warn_array_new_too_large : Warning<"array is too large (%0 elements)">,
4330   // FIXME PR11644: ", will throw std::bad_array_new_length at runtime"
4331   InGroup<BadArrayNewLength>;
4332
4333 // -Wpadded, -Wpacked
4334 def warn_padded_struct_field : Warning<
4335   "padding %select{struct|interface|class}0 %1 with %2 "
4336   "%select{byte|bit}3%s2 to align %4">,
4337   InGroup<Padded>, DefaultIgnore;
4338 def warn_padded_struct_anon_field : Warning<
4339   "padding %select{struct|interface|class}0 %1 with %2 "
4340   "%select{byte|bit}3%s2 to align anonymous bit-field">,
4341   InGroup<Padded>, DefaultIgnore;
4342 def warn_padded_struct_size : Warning<
4343   "padding size of %0 with %1 %select{byte|bit}2%s1 to alignment boundary">,
4344   InGroup<Padded>, DefaultIgnore;
4345 def warn_unnecessary_packed : Warning<
4346   "packed attribute is unnecessary for %0">, InGroup<Packed>, DefaultIgnore;
4347
4348 def err_typecheck_negative_array_size : Error<"array size is negative">;
4349 def warn_typecheck_negative_array_new_size : Warning<"array size is negative">,
4350   // FIXME PR11644: ", will throw std::bad_array_new_length at runtime"
4351   InGroup<BadArrayNewLength>;
4352 def warn_typecheck_function_qualifiers_ignored : Warning<
4353   "'%0' qualifier on function type %1 has no effect">,
4354   InGroup<IgnoredQualifiers>;
4355 def warn_typecheck_function_qualifiers_unspecified : Warning<
4356   "'%0' qualifier on function type %1 has unspecified behavior">;
4357 def warn_typecheck_reference_qualifiers : Warning<
4358   "'%0' qualifier on reference type %1 has no effect">,
4359   InGroup<IgnoredQualifiers>;
4360 def err_typecheck_invalid_restrict_not_pointer : Error<
4361   "restrict requires a pointer or reference (%0 is invalid)">;
4362 def err_typecheck_invalid_restrict_not_pointer_noarg : Error<
4363   "restrict requires a pointer or reference">;
4364 def err_typecheck_invalid_restrict_invalid_pointee : Error<
4365   "pointer to function type %0 may not be 'restrict' qualified">;
4366 def ext_typecheck_zero_array_size : Extension<
4367   "zero size arrays are an extension">, InGroup<ZeroLengthArray>;
4368 def err_typecheck_zero_array_size : Error<
4369   "zero-length arrays are not permitted in C++">;
4370 def warn_typecheck_zero_static_array_size : Warning<
4371   "'static' has no effect on zero-length arrays">,
4372   InGroup<ArrayBounds>;
4373 def err_array_size_non_int : Error<"size of array has non-integer type %0">;
4374 def err_init_element_not_constant : Error<
4375   "initializer element is not a compile-time constant">;
4376 def ext_aggregate_init_not_constant : Extension<
4377   "initializer for aggregate is not a compile-time constant">, InGroup<C99>;
4378 def err_local_cant_init : Error<
4379   "'__local' variable cannot have an initializer">;
4380 def err_block_extern_cant_init : Error<
4381   "'extern' variable cannot have an initializer">;
4382 def warn_extern_init : Warning<"'extern' variable has an initializer">,
4383   InGroup<DiagGroup<"extern-initializer">>;
4384 def err_variable_object_no_init : Error<
4385   "variable-sized object may not be initialized">;
4386 def err_excess_initializers : Error<
4387   "excess elements in %select{array|vector|scalar|union|struct}0 initializer">;
4388 def ext_excess_initializers : ExtWarn<
4389   "excess elements in %select{array|vector|scalar|union|struct}0 initializer">;
4390 def err_excess_initializers_in_char_array_initializer : Error<
4391   "excess elements in char array initializer">;
4392 def ext_excess_initializers_in_char_array_initializer : ExtWarn<
4393   "excess elements in char array initializer">;
4394 def err_initializer_string_for_char_array_too_long : Error<
4395   "initializer-string for char array is too long">;
4396 def ext_initializer_string_for_char_array_too_long : ExtWarn<
4397   "initializer-string for char array is too long">;
4398 def warn_missing_field_initializers : Warning<
4399   "missing field %0 initializer">,
4400   InGroup<MissingFieldInitializers>, DefaultIgnore;
4401 def warn_braces_around_scalar_init : Warning<
4402   "braces around scalar initializer">, InGroup<DiagGroup<"braced-scalar-init">>;
4403 def ext_many_braces_around_scalar_init : ExtWarn<
4404   "too many braces around scalar initializer">,
4405   InGroup<DiagGroup<"many-braces-around-scalar-init">>;
4406 def ext_complex_component_init : Extension<
4407   "complex initialization specifying real and imaginary components "
4408   "is an extension">, InGroup<DiagGroup<"complex-component-init">>;
4409 def err_empty_scalar_initializer : Error<"scalar initializer cannot be empty">;
4410 def warn_cxx98_compat_empty_scalar_initializer : Warning<
4411   "scalar initialized from empty initializer list is incompatible with C++98">,
4412   InGroup<CXX98Compat>, DefaultIgnore;
4413 def warn_cxx98_compat_reference_list_init : Warning<
4414   "reference initialized from initializer list is incompatible with C++98">,
4415   InGroup<CXX98Compat>, DefaultIgnore;
4416 def warn_cxx98_compat_initializer_list_init : Warning<
4417   "initialization of initializer_list object is incompatible with C++98">,
4418   InGroup<CXX98Compat>, DefaultIgnore;
4419 def warn_cxx98_compat_ctor_list_init : Warning<
4420   "constructor call from initializer list is incompatible with C++98">,
4421   InGroup<CXX98Compat>, DefaultIgnore;
4422 def err_illegal_initializer : Error<
4423   "illegal initializer (only variables can be initialized)">;
4424 def err_illegal_initializer_type : Error<"illegal initializer type %0">;
4425 def ext_init_list_type_narrowing : ExtWarn<
4426   "type %0 cannot be narrowed to %1 in initializer list">, 
4427   InGroup<CXX11Narrowing>, DefaultError, SFINAEFailure;
4428 def ext_init_list_variable_narrowing : ExtWarn<
4429   "non-constant-expression cannot be narrowed from type %0 to %1 in "
4430   "initializer list">, InGroup<CXX11Narrowing>, DefaultError, SFINAEFailure;
4431 def ext_init_list_constant_narrowing : ExtWarn<
4432   "constant expression evaluates to %0 which cannot be narrowed to type %1">,
4433   InGroup<CXX11Narrowing>, DefaultError, SFINAEFailure;
4434 def warn_init_list_type_narrowing : Warning<
4435   "type %0 cannot be narrowed to %1 in initializer list in C++11">,
4436   InGroup<CXX11Narrowing>, DefaultIgnore;
4437 def warn_init_list_variable_narrowing : Warning<
4438   "non-constant-expression cannot be narrowed from type %0 to %1 in "
4439   "initializer list in C++11">,
4440   InGroup<CXX11Narrowing>, DefaultIgnore;
4441 def warn_init_list_constant_narrowing : Warning<
4442   "constant expression evaluates to %0 which cannot be narrowed to type %1 in "
4443   "C++11">,
4444   InGroup<CXX11Narrowing>, DefaultIgnore;
4445 def note_init_list_narrowing_silence : Note<
4446   "insert an explicit cast to silence this issue">;
4447 def err_init_objc_class : Error<
4448   "cannot initialize Objective-C class type %0">;
4449 def err_implicit_empty_initializer : Error<
4450   "initializer for aggregate with no elements requires explicit braces">;
4451 def err_bitfield_has_negative_width : Error<
4452   "bit-field %0 has negative width (%1)">;
4453 def err_anon_bitfield_has_negative_width : Error<
4454   "anonymous bit-field has negative width (%0)">;
4455 def err_bitfield_has_zero_width : Error<"named bit-field %0 has zero width">;
4456 def err_bitfield_width_exceeds_type_width : Error<
4457   "width of bit-field %0 (%1 bits) exceeds %select{width|size}2 "
4458   "of its type (%3 bit%s3)">;
4459 def err_anon_bitfield_width_exceeds_type_width : Error<
4460   "width of anonymous bit-field (%0 bits) exceeds %select{width|size}1 "
4461   "of its type (%2 bit%s2)">;
4462 def err_incorrect_number_of_vector_initializers : Error<
4463   "number of elements must be either one or match the size of the vector">;
4464
4465 // Used by C++ which allows bit-fields that are wider than the type.
4466 def warn_bitfield_width_exceeds_type_width: Warning<
4467   "width of bit-field %0 (%1 bits) exceeds the width of its type; value will "
4468   "be truncated to %2 bit%s2">, InGroup<BitFieldWidth>;
4469 def warn_anon_bitfield_width_exceeds_type_width : Warning<
4470   "width of anonymous bit-field (%0 bits) exceeds width of its type; value "
4471   "will be truncated to %1 bit%s1">, InGroup<BitFieldWidth>;
4472
4473 def warn_missing_braces : Warning<
4474   "suggest braces around initialization of subobject">,
4475   InGroup<MissingBraces>, DefaultIgnore;
4476
4477 def err_redefinition_of_label : Error<"redefinition of label %0">;
4478 def err_undeclared_label_use : Error<"use of undeclared label %0">;
4479 def err_goto_ms_asm_label : Error<
4480   "cannot jump from this goto statement to label %0 inside an inline assembly block">;
4481 def note_goto_ms_asm_label : Note<
4482   "inline assembly label %0 declared here">;
4483 def warn_unused_label : Warning<"unused label %0">,
4484   InGroup<UnusedLabel>, DefaultIgnore;
4485
4486 def err_goto_into_protected_scope : Error<
4487   "cannot jump from this goto statement to its label">;
4488 def ext_goto_into_protected_scope : ExtWarn<
4489   "jump from this goto statement to its label is a Microsoft extension">,
4490   InGroup<MicrosoftGoto>;
4491 def warn_cxx98_compat_goto_into_protected_scope : Warning<
4492   "jump from this goto statement to its label is incompatible with C++98">,
4493   InGroup<CXX98Compat>, DefaultIgnore;
4494 def err_switch_into_protected_scope : Error<
4495   "cannot jump from switch statement to this case label">;
4496 def warn_cxx98_compat_switch_into_protected_scope : Warning<
4497   "jump from switch statement to this case label is incompatible with C++98">,
4498   InGroup<CXX98Compat>, DefaultIgnore;
4499 def err_indirect_goto_without_addrlabel : Error<
4500   "indirect goto in function with no address-of-label expressions">;
4501 def err_indirect_goto_in_protected_scope : Error<
4502   "cannot jump from this indirect goto statement to one of its possible targets">;
4503 def warn_cxx98_compat_indirect_goto_in_protected_scope : Warning<
4504   "jump from this indirect goto statement to one of its possible targets "
4505   "is incompatible with C++98">, InGroup<CXX98Compat>, DefaultIgnore;
4506 def note_indirect_goto_target : Note<
4507   "possible target of indirect goto statement">;
4508 def note_protected_by_variable_init : Note<
4509   "jump bypasses variable initialization">;
4510 def note_protected_by_variable_nontriv_destructor : Note<
4511   "jump bypasses variable with a non-trivial destructor">;
4512 def note_protected_by_variable_non_pod : Note<
4513   "jump bypasses initialization of non-POD variable">;
4514 def note_protected_by_cleanup : Note<
4515   "jump bypasses initialization of variable with __attribute__((cleanup))">;
4516 def note_protected_by_vla_typedef : Note<
4517   "jump bypasses initialization of VLA typedef">;
4518 def note_protected_by_vla_type_alias : Note<
4519   "jump bypasses initialization of VLA type alias">;
4520 def note_protected_by_vla : Note<
4521   "jump bypasses initialization of variable length array">;
4522 def note_protected_by_objc_try : Note<
4523   "jump bypasses initialization of @try block">;
4524 def note_protected_by_objc_catch : Note<
4525   "jump bypasses initialization of @catch block">;
4526 def note_protected_by_objc_finally : Note<
4527   "jump bypasses initialization of @finally block">;
4528 def note_protected_by_objc_synchronized : Note<
4529   "jump bypasses initialization of @synchronized block">;
4530 def note_protected_by_objc_autoreleasepool : Note<
4531   "jump bypasses auto release push of @autoreleasepool block">;
4532 def note_protected_by_cxx_try : Note<
4533   "jump bypasses initialization of try block">;
4534 def note_protected_by_cxx_catch : Note<
4535   "jump bypasses initialization of catch block">;
4536 def note_protected_by_seh_try : Note<
4537   "jump bypasses initialization of __try block">;
4538 def note_protected_by_seh_except : Note<
4539   "jump bypasses initialization of __except block">;
4540 def note_protected_by_seh_finally : Note<
4541   "jump bypasses initialization of __finally block">;
4542 def note_protected_by___block : Note<
4543   "jump bypasses setup of __block variable">;
4544 def note_protected_by_objc_strong_init : Note<
4545   "jump bypasses initialization of __strong variable">;
4546 def note_protected_by_objc_weak_init : Note<
4547   "jump bypasses initialization of __weak variable">;
4548 def note_enters_block_captures_cxx_obj : Note<
4549   "jump enters lifetime of block which captures a destructible C++ object">;
4550 def note_enters_block_captures_strong : Note<
4551   "jump enters lifetime of block which strongly captures a variable">;
4552 def note_enters_block_captures_weak : Note<
4553   "jump enters lifetime of block which weakly captures a variable">;
4554
4555 def note_exits_cleanup : Note<
4556   "jump exits scope of variable with __attribute__((cleanup))">;
4557 def note_exits_dtor : Note<
4558   "jump exits scope of variable with non-trivial destructor">;
4559 def note_exits_temporary_dtor : Note<
4560   "jump exits scope of lifetime-extended temporary with non-trivial "
4561   "destructor">;
4562 def note_exits___block : Note<
4563   "jump exits scope of __block variable">;
4564 def note_exits_objc_try : Note<
4565   "jump exits @try block">;
4566 def note_exits_objc_catch : Note<
4567   "jump exits @catch block">;
4568 def note_exits_objc_finally : Note<
4569   "jump exits @finally block">;
4570 def note_exits_objc_synchronized : Note<
4571   "jump exits @synchronized block">;
4572 def note_exits_cxx_try : Note<
4573   "jump exits try block">;
4574 def note_exits_cxx_catch : Note<
4575   "jump exits catch block">;
4576 def note_exits_seh_try : Note<
4577   "jump exits __try block">;
4578 def note_exits_seh_except : Note<
4579   "jump exits __except block">;
4580 def note_exits_seh_finally : Note<
4581   "jump exits __finally block">;
4582 def note_exits_objc_autoreleasepool : Note<
4583   "jump exits autoreleasepool block">;
4584 def note_exits_objc_strong : Note<
4585   "jump exits scope of __strong variable">;
4586 def note_exits_objc_weak : Note<
4587   "jump exits scope of __weak variable">;
4588 def note_exits_block_captures_cxx_obj : Note<
4589   "jump exits lifetime of block which captures a destructible C++ object">;
4590 def note_exits_block_captures_strong : Note<
4591   "jump exits lifetime of block which strongly captures a variable">;
4592 def note_exits_block_captures_weak : Note<
4593   "jump exits lifetime of block which weakly captures a variable">;
4594
4595 def err_func_returning_qualified_void : ExtWarn<
4596   "function cannot return qualified void type %0">,
4597   InGroup<DiagGroup<"qualified-void-return-type">>;
4598 def err_func_returning_array_function : Error<
4599   "function cannot return %select{array|function}0 type %1">;
4600 def err_field_declared_as_function : Error<"field %0 declared as a function">;
4601 def err_field_incomplete : Error<"field has incomplete type %0">;
4602 def ext_variable_sized_type_in_struct : ExtWarn<
4603   "field %0 with variable sized type %1 not at the end of a struct or class is"
4604   " a GNU extension">, InGroup<GNUVariableSizedTypeNotAtEnd>;
4605
4606 def ext_c99_flexible_array_member : Extension<
4607   "flexible array members are a C99 feature">, InGroup<C99>;
4608 def err_flexible_array_virtual_base : Error<
4609   "flexible array member %0 not allowed in "
4610   "%select{struct|interface|union|class|enum}1 which has a virtual base class">;
4611 def err_flexible_array_empty_aggregate : Error<
4612   "flexible array member %0 not allowed in otherwise empty "
4613   "%select{struct|interface|union|class|enum}1">;
4614 def err_flexible_array_has_nontrivial_dtor : Error<
4615   "flexible array member %0 of type %1 with non-trivial destruction">;
4616 def ext_flexible_array_in_struct : Extension<
4617   "%0 may not be nested in a struct due to flexible array member">,
4618   InGroup<FlexibleArrayExtensions>;
4619 def ext_flexible_array_in_array : Extension<
4620   "%0 may not be used as an array element due to flexible array member">,
4621   InGroup<FlexibleArrayExtensions>;
4622 def err_flexible_array_init : Error<
4623   "initialization of flexible array member is not allowed">;
4624 def ext_flexible_array_empty_aggregate_ms : Extension<
4625   "flexible array member %0 in otherwise empty "
4626   "%select{struct|interface|union|class|enum}1 is a Microsoft extension">,
4627   InGroup<MicrosoftFlexibleArray>;
4628 def err_flexible_array_union : Error<
4629   "flexible array member %0 in a union is not allowed">;
4630 def ext_flexible_array_union_ms : Extension<
4631   "flexible array member %0 in a union is a Microsoft extension">,
4632   InGroup<MicrosoftFlexibleArray>;
4633 def ext_flexible_array_empty_aggregate_gnu : Extension<
4634   "flexible array member %0 in otherwise empty "
4635   "%select{struct|interface|union|class|enum}1 is a GNU extension">,
4636   InGroup<GNUEmptyStruct>;
4637 def ext_flexible_array_union_gnu : Extension<
4638   "flexible array member %0 in a union is a GNU extension">, InGroup<GNUFlexibleArrayUnionMember>;
4639
4640 let CategoryName = "ARC Semantic Issue" in {
4641
4642 // ARC-mode diagnostics.
4643
4644 let CategoryName = "ARC Weak References" in {
4645
4646 def err_arc_weak_no_runtime : Error<
4647   "cannot create __weak reference because the current deployment target "
4648   "does not support weak references">;
4649 def err_arc_weak_disabled : Error<
4650   "cannot create __weak reference in file using manual reference counting">;
4651 def err_synthesizing_arc_weak_property_disabled : Error<
4652   "cannot synthesize weak property in file using manual reference counting">;
4653 def err_synthesizing_arc_weak_property_no_runtime : Error<
4654   "cannot synthesize weak property because the current deployment target "
4655   "does not support weak references">;
4656 def err_arc_unsupported_weak_class : Error<
4657   "class is incompatible with __weak references">;
4658 def err_arc_weak_unavailable_assign : Error<
4659   "assignment of a weak-unavailable object to a __weak object">;
4660 def err_arc_weak_unavailable_property : Error<
4661   "synthesizing __weak instance variable of type %0, which does not "
4662   "support weak references">;
4663 def note_implemented_by_class : Note<
4664   "when implemented by class %0">;
4665 def err_arc_convesion_of_weak_unavailable : Error<
4666   "%select{implicit conversion|cast}0 of weak-unavailable object of type %1 to"
4667   " a __weak object of type %2">;
4668
4669 } // end "ARC Weak References" category
4670
4671 let CategoryName = "ARC Restrictions" in {
4672
4673 def err_unavailable_in_arc : Error<
4674   "%0 is unavailable in ARC">;
4675 def note_arc_forbidden_type : Note<
4676   "declaration uses type that is ill-formed in ARC">;
4677 def note_performs_forbidden_arc_conversion : Note<
4678   "inline function performs a conversion which is forbidden in ARC">;
4679 def note_arc_init_returns_unrelated : Note<
4680   "init method must return a type related to its receiver type">;
4681 def note_arc_weak_disabled : Note<
4682   "declaration uses __weak, but ARC is disabled">;
4683 def note_arc_weak_no_runtime : Note<"declaration uses __weak, which "
4684   "the current deployment target does not support">;
4685 def note_arc_field_with_ownership : Note<
4686   "field has non-trivial ownership qualification">;
4687
4688 def err_arc_illegal_explicit_message : Error<
4689   "ARC forbids explicit message send of %0">;
4690 def err_arc_unused_init_message : Error<
4691   "the result of a delegate init call must be immediately returned "
4692   "or assigned to 'self'">;
4693 def err_arc_mismatched_cast : Error<
4694   "%select{implicit conversion|cast}0 of "
4695   "%select{%2|a non-Objective-C pointer type %2|a block pointer|"
4696   "an Objective-C pointer|an indirect pointer to an Objective-C pointer}1"
4697   " to %3 is disallowed with ARC">;
4698 def err_arc_nolifetime_behavior : Error<
4699   "explicit ownership qualifier on cast result has no effect">;
4700 def err_arc_objc_object_in_tag : Error<
4701   "ARC forbids %select{Objective-C objects|blocks}0 in "
4702   "%select{struct|interface|union|<<ERROR>>|enum}1">;
4703 def err_arc_objc_property_default_assign_on_object : Error<
4704   "ARC forbids synthesizing a property of an Objective-C object "
4705   "with unspecified ownership or storage attribute">;
4706 def err_arc_illegal_selector : Error<
4707   "ARC forbids use of %0 in a @selector">;
4708 def err_arc_illegal_method_def : Error<
4709   "ARC forbids %select{implementation|synthesis}0 of %1">;
4710 def warn_arc_strong_pointer_objc_pointer : Warning<
4711   "method parameter of type %0 with no explicit ownership">,
4712   InGroup<DiagGroup<"explicit-ownership-type">>, DefaultIgnore;
4713   
4714 } // end "ARC Restrictions" category
4715   
4716 def err_arc_lost_method_convention : Error<
4717   "method was declared as %select{an 'alloc'|a 'copy'|an 'init'|a 'new'}0 "
4718   "method, but its implementation doesn't match because %select{"
4719   "its result type is not an object pointer|"
4720   "its result type is unrelated to its receiver type}1">;
4721 def note_arc_lost_method_convention : Note<"declaration in interface">;
4722 def err_arc_gained_method_convention : Error<
4723   "method implementation does not match its declaration">;
4724 def note_arc_gained_method_convention : Note<
4725   "declaration in interface is not in the '%select{alloc|copy|init|new}0' "
4726   "family because %select{its result type is not an object pointer|"
4727   "its result type is unrelated to its receiver type}1">;
4728 def err_typecheck_arc_assign_self : Error<
4729   "cannot assign to 'self' outside of a method in the init family">;
4730 def err_typecheck_arc_assign_self_class_method : Error<
4731   "cannot assign to 'self' in a class method">;
4732 def err_typecheck_arr_assign_enumeration : Error<
4733   "fast enumeration variables cannot be modified in ARC by default; "
4734   "declare the variable __strong to allow this">;
4735 def warn_arc_retained_assign : Warning<
4736   "assigning retained object to %select{weak|unsafe_unretained}0 "
4737   "%select{property|variable}1"
4738   "; object will be released after assignment">,
4739   InGroup<ARCUnsafeRetainedAssign>;
4740 def warn_arc_retained_property_assign : Warning<
4741   "assigning retained object to unsafe property"
4742   "; object will be released after assignment">,
4743   InGroup<ARCUnsafeRetainedAssign>;
4744 def warn_arc_literal_assign : Warning<
4745   "assigning %select{array literal|dictionary literal|numeric literal|boxed expression|<should not happen>|block literal}0"
4746   " to a weak %select{property|variable}1"
4747   "; object will be released after assignment">,
4748   InGroup<ARCUnsafeRetainedAssign>;
4749 def err_arc_new_array_without_ownership : Error<
4750   "'new' cannot allocate an array of %0 with no explicit ownership">;
4751 def err_arc_autoreleasing_var : Error<
4752   "%select{__block variables|global variables|fields|instance variables}0 cannot have "
4753   "__autoreleasing ownership">;
4754 def err_arc_autoreleasing_capture : Error<
4755   "cannot capture __autoreleasing variable in a "
4756   "%select{block|lambda by copy}0">;
4757 def err_arc_thread_ownership : Error<
4758   "thread-local variable has non-trivial ownership: type is %0">;
4759 def err_arc_indirect_no_ownership : Error<
4760   "%select{pointer|reference}1 to non-const type %0 with no explicit ownership">;
4761 def err_arc_array_param_no_ownership : Error<
4762   "must explicitly describe intended ownership of an object array parameter">;
4763 def err_arc_pseudo_dtor_inconstant_quals : Error<
4764   "pseudo-destructor destroys object of type %0 with inconsistently-qualified "
4765   "type %1">;
4766 def err_arc_init_method_unrelated_result_type : Error<
4767   "init methods must return a type related to the receiver type">;
4768 def err_arc_nonlocal_writeback : Error<
4769   "passing address of %select{non-local|non-scalar}0 object to "
4770   "__autoreleasing parameter for write-back">;
4771 def err_arc_method_not_found : Error<
4772   "no known %select{instance|class}1 method for selector %0">;
4773 def err_arc_receiver_forward_class : Error<
4774   "receiver %0 for class message is a forward declaration">;
4775 def err_arc_may_not_respond : Error<
4776   "no visible @interface for %0 declares the selector %1">;
4777 def err_arc_receiver_forward_instance : Error<
4778   "receiver type %0 for instance message is a forward declaration">;
4779 def warn_receiver_forward_instance : Warning<
4780   "receiver type %0 for instance message is a forward declaration">,
4781   InGroup<ForwardClassReceiver>, DefaultIgnore;
4782 def err_arc_collection_forward : Error<
4783   "collection expression type %0 is a forward declaration">;
4784 def err_arc_multiple_method_decl : Error< 
4785   "multiple methods named %0 found with mismatched result, "
4786   "parameter type or attributes">;
4787 def warn_arc_lifetime_result_type : Warning<
4788   "ARC %select{unused|__unsafe_unretained|__strong|__weak|__autoreleasing}0 "
4789   "lifetime qualifier on return type is ignored">,
4790   InGroup<IgnoredQualifiers>;
4791
4792 let CategoryName = "ARC Retain Cycle" in {
4793
4794 def warn_arc_retain_cycle : Warning<
4795   "capturing %0 strongly in this block is likely to lead to a retain cycle">,
4796   InGroup<ARCRetainCycles>;
4797 def note_arc_retain_cycle_owner : Note<
4798   "block will be retained by %select{the captured object|an object strongly "
4799   "retained by the captured object}0">;
4800
4801 } // end "ARC Retain Cycle" category
4802
4803 def warn_arc_object_memaccess : Warning<
4804   "%select{destination for|source of}0 this %1 call is a pointer to "
4805   "ownership-qualified type %2">, InGroup<ARCNonPodMemAccess>;
4806
4807 let CategoryName = "ARC and @properties" in {
4808
4809 def err_arc_strong_property_ownership : Error<
4810   "existing instance variable %1 for strong property %0 may not be "
4811   "%select{|__unsafe_unretained||__weak}2">;
4812 def err_arc_assign_property_ownership : Error<
4813   "existing instance variable %1 for property %0 with %select{unsafe_unretained|assign}2 "
4814   "attribute must be __unsafe_unretained">;
4815 def err_arc_inconsistent_property_ownership : Error<
4816   "%select{|unsafe_unretained|strong|weak}1 property %0 may not also be "
4817   "declared %select{|__unsafe_unretained|__strong|__weak|__autoreleasing}2">;
4818
4819 } // end "ARC and @properties" category
4820
4821 def err_arc_atomic_ownership : Error<
4822   "cannot perform atomic operation on a pointer to type %0: type has "
4823   "non-trivial ownership">;
4824
4825 let CategoryName = "ARC Casting Rules" in {
4826
4827 def err_arc_bridge_cast_incompatible : Error<
4828   "incompatible types casting %0 to %1 with a %select{__bridge|"
4829   "__bridge_transfer|__bridge_retained}2 cast">;
4830 def err_arc_bridge_cast_wrong_kind : Error<
4831   "cast of %select{Objective-C|block|C}0 pointer type %1 to "
4832   "%select{Objective-C|block|C}2 pointer type %3 cannot use %select{__bridge|"
4833   "__bridge_transfer|__bridge_retained}4">;
4834 def err_arc_cast_requires_bridge : Error<
4835   "%select{cast|implicit conversion}0 of %select{Objective-C|block|C}1 "
4836   "pointer type %2 to %select{Objective-C|block|C}3 pointer type %4 "
4837   "requires a bridged cast">;
4838 def note_arc_bridge : Note<
4839   "use __bridge to convert directly (no change in ownership)">;
4840 def note_arc_cstyle_bridge : Note<
4841   "use __bridge with C-style cast to convert directly (no change in ownership)">;
4842 def note_arc_bridge_transfer : Note<
4843   "use %select{__bridge_transfer|CFBridgingRelease call}1 to transfer "
4844   "ownership of a +1 %0 into ARC">;
4845 def note_arc_cstyle_bridge_transfer : Note<
4846   "use __bridge_transfer with C-style cast to transfer "
4847   "ownership of a +1 %0 into ARC">;
4848 def note_arc_bridge_retained : Note<
4849   "use %select{__bridge_retained|CFBridgingRetain call}1 to make an "
4850   "ARC object available as a +1 %0">;
4851 def note_arc_cstyle_bridge_retained : Note<
4852   "use __bridge_retained with C-style cast to make an "
4853   "ARC object available as a +1 %0">;
4854
4855 } // ARC Casting category
4856
4857 } // ARC category name
4858
4859 def err_flexible_array_init_needs_braces : Error<
4860   "flexible array requires brace-enclosed initializer">;
4861 def err_illegal_decl_array_of_functions : Error<
4862   "'%0' declared as array of functions of type %1">;
4863 def err_illegal_decl_array_incomplete_type : Error<
4864   "array has incomplete element type %0">;
4865 def err_illegal_message_expr_incomplete_type : Error<
4866   "Objective-C message has incomplete result type %0">;
4867 def err_illegal_decl_array_of_references : Error<
4868   "'%0' declared as array of references of type %1">;
4869 def err_decl_negative_array_size : Error<
4870   "'%0' declared as an array with a negative size">;
4871 def err_array_static_outside_prototype : Error<
4872   "%0 used in array declarator outside of function prototype">;
4873 def err_array_static_not_outermost : Error<
4874   "%0 used in non-outermost array type derivation">;
4875 def err_array_star_outside_prototype : Error<
4876   "star modifier used outside of function prototype">;
4877 def err_illegal_decl_pointer_to_reference : Error<
4878   "'%0' declared as a pointer to a reference of type %1">;
4879 def err_illegal_decl_mempointer_to_reference : Error<
4880   "'%0' declared as a member pointer to a reference of type %1">;
4881 def err_illegal_decl_mempointer_to_void : Error<
4882   "'%0' declared as a member pointer to void">;
4883 def err_illegal_decl_mempointer_in_nonclass : Error<
4884   "'%0' does not point into a class">;
4885 def err_mempointer_in_nonclass_type : Error<
4886   "member pointer refers into non-class type %0">;
4887 def err_reference_to_void : Error<"cannot form a reference to 'void'">;
4888 def err_nonfunction_block_type : Error<
4889   "block pointer to non-function type is invalid">;
4890 def err_return_block_has_expr : Error<"void block should not return a value">;
4891 def err_block_return_missing_expr : Error<
4892   "non-void block should return a value">;
4893 def err_func_def_incomplete_result : Error<
4894   "incomplete result type %0 in function definition">;
4895 def err_atomic_specifier_bad_type : Error<
4896   "_Atomic cannot be applied to "
4897   "%select{incomplete |array |function |reference |atomic |qualified |}0type "
4898   "%1 %select{||||||which is not trivially copyable}0">;
4899
4900 // Expressions.
4901 def ext_sizeof_alignof_function_type : Extension<
4902   "invalid application of '%select{sizeof|alignof|vec_step}0' to a "
4903   "function type">, InGroup<PointerArith>;
4904 def ext_sizeof_alignof_void_type : Extension<
4905   "invalid application of '%select{sizeof|alignof|vec_step}0' to a void "
4906   "type">, InGroup<PointerArith>;
4907 def err_opencl_sizeof_alignof_type : Error<
4908   "invalid application of '%select{sizeof|alignof|vec_step|__builtin_omp_required_simd_align}0' to a void type">;
4909 def err_sizeof_alignof_incomplete_type : Error<
4910   "invalid application of '%select{sizeof|alignof|vec_step|__builtin_omp_required_simd_align}0' to an "
4911   "incomplete type %1">;
4912 def err_sizeof_alignof_function_type : Error<
4913   "invalid application of '%select{sizeof|alignof|vec_step|__builtin_omp_required_simd_align}0' to a "
4914   "function type">;
4915 def err_openmp_default_simd_align_expr : Error<
4916   "invalid application of '__builtin_omp_required_simd_align' to an expression, only type is allowed">;
4917 def err_sizeof_alignof_typeof_bitfield : Error<
4918   "invalid application of '%select{sizeof|alignof|typeof}0' to bit-field">;
4919 def err_alignof_member_of_incomplete_type : Error<
4920   "invalid application of 'alignof' to a field of a class still being defined">;
4921 def err_vecstep_non_scalar_vector_type : Error<
4922   "'vec_step' requires built-in scalar or vector type, %0 invalid">;
4923 def err_offsetof_incomplete_type : Error<
4924   "offsetof of incomplete type %0">;
4925 def err_offsetof_record_type : Error<
4926   "offsetof requires struct, union, or class type, %0 invalid">;
4927 def err_offsetof_array_type : Error<"offsetof requires array type, %0 invalid">;
4928 def ext_offsetof_extended_field_designator : Extension<
4929   "using extended field designator is an extension">,
4930   InGroup<DiagGroup<"extended-offsetof">>;
4931 def ext_offsetof_non_pod_type : ExtWarn<"offset of on non-POD type %0">,
4932   InGroup<InvalidOffsetof>;
4933 def ext_offsetof_non_standardlayout_type : ExtWarn<
4934   "offset of on non-standard-layout type %0">, InGroup<InvalidOffsetof>;
4935 def err_offsetof_bitfield : Error<"cannot compute offset of bit-field %0">;
4936 def err_offsetof_field_of_virtual_base : Error<
4937   "invalid application of 'offsetof' to a field of a virtual base">;
4938 def warn_sub_ptr_zero_size_types : Warning<
4939   "subtraction of pointers to type %0 of zero size has undefined behavior">,
4940   InGroup<PointerArith>;
4941
4942 def warn_floatingpoint_eq : Warning<
4943   "comparing floating point with == or != is unsafe">,
4944   InGroup<DiagGroup<"float-equal">>, DefaultIgnore;
4945
4946 def warn_remainder_division_by_zero : Warning<
4947   "%select{remainder|division}0 by zero is undefined">,
4948   InGroup<DivZero>;
4949 def warn_shift_lhs_negative : Warning<"shifting a negative signed value is undefined">,
4950   InGroup<DiagGroup<"shift-negative-value">>;
4951 def warn_shift_negative : Warning<"shift count is negative">,
4952   InGroup<DiagGroup<"shift-count-negative">>;
4953 def warn_shift_gt_typewidth : Warning<"shift count >= width of type">,
4954   InGroup<DiagGroup<"shift-count-overflow">>;
4955 def warn_shift_result_gt_typewidth : Warning<
4956   "signed shift result (%0) requires %1 bits to represent, but %2 only has "
4957   "%3 bits">, InGroup<DiagGroup<"shift-overflow">>;
4958 def warn_shift_result_sets_sign_bit : Warning<
4959   "signed shift result (%0) sets the sign bit of the shift expression's "
4960   "type (%1) and becomes negative">,
4961   InGroup<DiagGroup<"shift-sign-overflow">>, DefaultIgnore;
4962
4963 def warn_precedence_bitwise_rel : Warning<
4964   "%0 has lower precedence than %1; %1 will be evaluated first">,
4965   InGroup<Parentheses>;
4966 def note_precedence_bitwise_first : Note<
4967   "place parentheses around the %0 expression to evaluate it first">;
4968 def note_precedence_silence : Note<
4969   "place parentheses around the '%0' expression to silence this warning">;
4970
4971 def warn_precedence_conditional : Warning<
4972   "operator '?:' has lower precedence than '%0'; '%0' will be evaluated first">,
4973   InGroup<Parentheses>;
4974 def note_precedence_conditional_first : Note<
4975   "place parentheses around the '?:' expression to evaluate it first">;
4976
4977 def warn_logical_instead_of_bitwise : Warning<
4978   "use of logical '%0' with constant operand">,
4979   InGroup<DiagGroup<"constant-logical-operand">>;
4980 def note_logical_instead_of_bitwise_change_operator : Note<
4981   "use '%0' for a bitwise operation">;
4982 def note_logical_instead_of_bitwise_remove_constant : Note<
4983   "remove constant to silence this warning">;
4984
4985 def warn_bitwise_op_in_bitwise_op : Warning<
4986   "'%0' within '%1'">, InGroup<BitwiseOpParentheses>;
4987
4988 def warn_logical_and_in_logical_or : Warning<
4989   "'&&' within '||'">, InGroup<LogicalOpParentheses>;
4990
4991 def warn_overloaded_shift_in_comparison :Warning<
4992   "overloaded operator %select{>>|<<}0 has higher precedence than "
4993   "comparison operator">,
4994   InGroup<OverloadedShiftOpParentheses>;
4995 def note_evaluate_comparison_first :Note<
4996   "place parentheses around comparison expression to evaluate it first">;
4997
4998 def warn_addition_in_bitshift : Warning<
4999   "operator '%0' has lower precedence than '%1'; "
5000   "'%1' will be evaluated first">, InGroup<ShiftOpParentheses>;
5001
5002 def warn_self_assignment : Warning<
5003   "explicitly assigning value of variable of type %0 to itself">,
5004   InGroup<SelfAssignment>, DefaultIgnore;
5005 def warn_self_move : Warning<
5006   "explicitly moving variable of type %0 to itself">,
5007   InGroup<SelfMove>, DefaultIgnore;
5008
5009 def warn_redundant_move_on_return : Warning<
5010   "redundant move in return statement">,
5011   InGroup<RedundantMove>, DefaultIgnore;
5012 def warn_pessimizing_move_on_return : Warning<
5013   "moving a local object in a return statement prevents copy elision">,
5014   InGroup<PessimizingMove>, DefaultIgnore;
5015 def warn_pessimizing_move_on_initialization : Warning<
5016   "moving a temporary object prevents copy elision">,
5017   InGroup<PessimizingMove>, DefaultIgnore;
5018 def note_remove_move : Note<"remove std::move call here">;
5019
5020 def warn_string_plus_int : Warning<
5021   "adding %0 to a string does not append to the string">,
5022   InGroup<StringPlusInt>;
5023 def warn_string_plus_char : Warning<
5024   "adding %0 to a string pointer does not append to the string">,
5025   InGroup<StringPlusChar>;
5026 def note_string_plus_scalar_silence : Note<
5027   "use array indexing to silence this warning">;
5028
5029 def warn_sizeof_array_param : Warning<
5030   "sizeof on array function parameter will return size of %0 instead of %1">,
5031   InGroup<SizeofArrayArgument>;
5032
5033 def warn_sizeof_array_decay : Warning<
5034   "sizeof on pointer operation will return size of %0 instead of %1">,
5035   InGroup<SizeofArrayDecay>;
5036
5037 def err_sizeof_nonfragile_interface : Error<
5038   "application of '%select{alignof|sizeof}1' to interface %0 is "
5039   "not supported on this architecture and platform">;
5040 def err_atdef_nonfragile_interface : Error<
5041   "use of @defs is not supported on this architecture and platform">;
5042 def err_subscript_nonfragile_interface : Error<
5043   "subscript requires size of interface %0, which is not constant for "
5044   "this architecture and platform">;
5045
5046 def err_arithmetic_nonfragile_interface : Error<
5047   "arithmetic on pointer to interface %0, which is not a constant size for "
5048   "this architecture and platform">;
5049
5050
5051 def ext_subscript_non_lvalue : Extension<
5052   "ISO C90 does not allow subscripting non-lvalue array">;
5053 def err_typecheck_subscript_value : Error<
5054   "subscripted value is not an array, pointer, or vector">;
5055 def err_typecheck_subscript_not_integer : Error<
5056   "array subscript is not an integer">;
5057 def err_subscript_function_type : Error<
5058   "subscript of pointer to function type %0">;
5059 def err_subscript_incomplete_type : Error<
5060   "subscript of pointer to incomplete type %0">;
5061 def err_dereference_incomplete_type : Error<
5062   "dereference of pointer to incomplete type %0">;
5063 def ext_gnu_subscript_void_type : Extension<
5064   "subscript of a pointer to void is a GNU extension">, InGroup<PointerArith>;
5065 def err_typecheck_member_reference_struct_union : Error<
5066   "member reference base type %0 is not a structure or union">;
5067 def err_typecheck_member_reference_ivar : Error<
5068   "%0 does not have a member named %1">;
5069 def error_arc_weak_ivar_access : Error<
5070   "dereferencing a __weak pointer is not allowed due to possible "
5071   "null value caused by race condition, assign it to strong variable first">;
5072 def err_typecheck_member_reference_arrow : Error<
5073   "member reference type %0 is not a pointer">;
5074 def err_typecheck_member_reference_suggestion : Error<
5075   "member reference type %0 is %select{a|not a}1 pointer; did you mean to use '%select{->|.}1'?">;
5076 def note_typecheck_member_reference_suggestion : Note<
5077   "did you mean to use '.' instead?">;
5078 def note_member_reference_arrow_from_operator_arrow : Note<
5079   "'->' applied to return value of the operator->() declared here">;
5080 def err_typecheck_member_reference_type : Error<
5081   "cannot refer to type member %0 in %1 with '%select{.|->}2'">;
5082 def err_typecheck_member_reference_unknown : Error<
5083   "cannot refer to member %0 in %1 with '%select{.|->}2'">;
5084 def err_member_reference_needs_call : Error<
5085   "base of member reference is a function; perhaps you meant to call "
5086   "it%select{| with no arguments}0?">;
5087 def warn_subscript_is_char : Warning<"array subscript is of type 'char'">,
5088   InGroup<CharSubscript>, DefaultIgnore;
5089
5090 def err_typecheck_incomplete_tag : Error<"incomplete definition of type %0">;
5091 def err_no_member : Error<"no member named %0 in %1">;
5092 def err_no_member_overloaded_arrow : Error<
5093   "no member named %0 in %1; did you mean to use '->' instead of '.'?">;
5094
5095 def err_member_not_yet_instantiated : Error<
5096   "no member %0 in %1; it has not yet been instantiated">;
5097 def note_non_instantiated_member_here : Note<
5098   "not-yet-instantiated member is declared here">;
5099
5100 def err_enumerator_does_not_exist : Error<
5101   "enumerator %0 does not exist in instantiation of %1">;
5102 def note_enum_specialized_here : Note<
5103   "enum %0 was explicitly specialized here">;
5104
5105 def err_member_redeclared : Error<"class member cannot be redeclared">;
5106 def ext_member_redeclared : ExtWarn<"class member cannot be redeclared">,
5107   InGroup<RedeclaredClassMember>;
5108 def err_member_redeclared_in_instantiation : Error<
5109   "multiple overloads of %0 instantiate to the same signature %1">;
5110 def err_member_name_of_class : Error<"member %0 has the same name as its class">;
5111 def err_member_def_undefined_record : Error<
5112   "out-of-line definition of %0 from class %1 without definition">;
5113 def err_member_decl_does_not_match : Error<
5114   "out-of-line %select{declaration|definition}2 of %0 "
5115   "does not match any declaration in %1">;
5116 def err_friend_decl_with_def_arg_must_be_def : Error<
5117   "friend declaration specifying a default argument must be a definition">;
5118 def err_friend_decl_with_def_arg_redeclared : Error<
5119   "friend declaration specifying a default argument must be the only declaration">;
5120 def err_friend_decl_does_not_match : Error<
5121   "friend declaration of %0 does not match any declaration in %1">;
5122 def err_member_decl_does_not_match_suggest : Error<
5123   "out-of-line %select{declaration|definition}2 of %0 "
5124   "does not match any declaration in %1; did you mean %3?">;
5125 def err_member_def_does_not_match_ret_type : Error<
5126   "return type of out-of-line definition of %q0 differs from "
5127   "that in the declaration">;
5128 def err_nonstatic_member_out_of_line : Error<
5129   "non-static data member defined out-of-line">;
5130 def err_qualified_typedef_declarator : Error<
5131   "typedef declarator cannot be qualified">;
5132 def err_qualified_param_declarator : Error<
5133   "parameter declarator cannot be qualified">;
5134 def ext_out_of_line_declaration : ExtWarn<
5135   "out-of-line declaration of a member must be a definition">,
5136   InGroup<OutOfLineDeclaration>, DefaultError;
5137 def err_member_extra_qualification : Error<
5138   "extra qualification on member %0">;
5139 def warn_member_extra_qualification : Warning<
5140   err_member_extra_qualification.Text>, InGroup<MicrosoftExtraQualification>;
5141 def warn_namespace_member_extra_qualification : Warning<
5142   "extra qualification on member %0">,
5143   InGroup<DiagGroup<"extra-qualification">>;
5144 def err_member_qualification : Error<
5145   "non-friend class member %0 cannot have a qualified name">;  
5146 def note_member_def_close_match : Note<"member declaration nearly matches">;
5147 def note_member_def_close_const_match : Note<
5148   "member declaration does not match because "
5149   "it %select{is|is not}0 const qualified">;
5150 def note_member_def_close_param_match : Note<
5151   "type of %ordinal0 parameter of member declaration does not match definition"
5152   "%diff{ ($ vs $)|}1,2">;
5153 def note_local_decl_close_match : Note<"local declaration nearly matches">;
5154 def note_local_decl_close_param_match : Note<
5155   "type of %ordinal0 parameter of local declaration does not match definition"
5156   "%diff{ ($ vs $)|}1,2">;
5157 def err_typecheck_ivar_variable_size : Error<
5158   "instance variables must have a constant size">;
5159 def err_ivar_reference_type : Error<
5160   "instance variables cannot be of reference type">;
5161 def err_typecheck_illegal_increment_decrement : Error<
5162   "cannot %select{decrement|increment}1 value of type %0">;
5163 def err_typecheck_expect_int : Error<
5164   "used type %0 where integer is required">;
5165 def err_typecheck_arithmetic_incomplete_type : Error<
5166   "arithmetic on a pointer to an incomplete type %0">;
5167 def err_typecheck_pointer_arith_function_type : Error<
5168   "arithmetic on%select{ a|}0 pointer%select{|s}0 to%select{ the|}2 "
5169   "function type%select{|s}2 %1%select{| and %3}2">;
5170 def err_typecheck_pointer_arith_void_type : Error<
5171   "arithmetic on%select{ a|}0 pointer%select{|s}0 to void">;
5172 def err_typecheck_decl_incomplete_type : Error<
5173   "variable has incomplete type %0">;
5174 def err_typecheck_decl_incomplete_type___float128 : Error<
5175   "support for type '__float128' is not yet implemented">;
5176 def ext_typecheck_decl_incomplete_type : ExtWarn<
5177   "tentative definition of variable with internal linkage has incomplete non-array type %0">,
5178   InGroup<DiagGroup<"tentative-definition-incomplete-type">>;
5179 def err_tentative_def_incomplete_type : Error<
5180   "tentative definition has type %0 that is never completed">;
5181 def warn_tentative_incomplete_array : Warning<
5182   "tentative array definition assumed to have one element">;
5183 def err_typecheck_incomplete_array_needs_initializer : Error<
5184   "definition of variable with array type needs an explicit size "
5185   "or an initializer">;
5186 def err_array_init_not_init_list : Error<
5187   "array initializer must be an initializer "
5188   "list%select{| or string literal| or wide string literal}0">;
5189 def err_array_init_narrow_string_into_wchar : Error<
5190   "initializing wide char array with non-wide string literal">;
5191 def err_array_init_wide_string_into_char : Error<
5192   "initializing char array with wide string literal">;
5193 def err_array_init_incompat_wide_string_into_wchar : Error<
5194   "initializing wide char array with incompatible wide string literal">;
5195 def err_array_init_different_type : Error<
5196   "cannot initialize array %diff{of type $ with array of type $|"
5197   "with different type of array}0,1">;
5198 def err_array_init_non_constant_array : Error<
5199   "cannot initialize array %diff{of type $ with non-constant array of type $|"
5200   "with different type of array}0,1">;
5201 def ext_array_init_copy : Extension<
5202   "initialization of an array "
5203   "%diff{of type $ from a compound literal of type $|"
5204   "from a compound literal}0,1 is a GNU extension">, InGroup<GNUCompoundLiteralInitializer>;
5205 // This is intentionally not disabled by -Wno-gnu.
5206 def ext_array_init_parens : ExtWarn<
5207   "parenthesized initialization of a member array is a GNU extension">,
5208   InGroup<DiagGroup<"gnu-array-member-paren-init">>, DefaultError;
5209 def warn_deprecated_string_literal_conversion : Warning<
5210   "conversion from string literal to %0 is deprecated">,
5211   InGroup<CXX11CompatDeprecatedWritableStr>;
5212 def ext_deprecated_string_literal_conversion : ExtWarn<
5213   "ISO C++11 does not allow conversion from string literal to %0">,
5214   InGroup<WritableStrings>, SFINAEFailure;
5215 def err_realimag_invalid_type : Error<"invalid type %0 to %1 operator">;
5216 def err_typecheck_sclass_fscope : Error<
5217   "illegal storage class on file-scoped variable">;
5218 def warn_standalone_specifier : Warning<"'%0' ignored on this declaration">,
5219   InGroup<MissingDeclarations>;
5220 def ext_standalone_specifier : ExtWarn<"'%0' is not permitted on a declaration "
5221   "of a type">, InGroup<MissingDeclarations>;
5222 def err_standalone_class_nested_name_specifier : Error<
5223   "forward declaration of %select{class|struct|interface|union|enum}0 cannot "
5224   "have a nested name specifier">;
5225 def err_typecheck_sclass_func : Error<"illegal storage class on function">;
5226 def err_static_block_func : Error<
5227   "function declared in block scope cannot have 'static' storage class">;
5228 def err_typecheck_address_of : Error<"address of %select{bit-field"
5229   "|vector element|property expression|register variable}0 requested">;
5230 def ext_typecheck_addrof_void : Extension<
5231   "ISO C forbids taking the address of an expression of type 'void'">;
5232 def err_unqualified_pointer_member_function : Error<
5233   "must explicitly qualify name of member function when taking its address">;
5234 def err_invalid_form_pointer_member_function : Error<
5235   "cannot create a non-constant pointer to member function">;
5236 def err_address_of_function_with_pass_object_size_params: Error<
5237   "cannot take address of function %0 because parameter %1 has "
5238   "pass_object_size attribute">;
5239 def err_parens_pointer_member_function : Error<
5240   "cannot parenthesize the name of a method when forming a member pointer">;
5241 def err_typecheck_invalid_lvalue_addrof_addrof_function : Error<
5242   "extra '&' taking address of overloaded function">;
5243 def err_typecheck_invalid_lvalue_addrof : Error<
5244   "cannot take the address of an rvalue of type %0">;
5245 def ext_typecheck_addrof_temporary : ExtWarn<
5246   "taking the address of a temporary object of type %0">, 
5247   InGroup<DiagGroup<"address-of-temporary">>, DefaultError;
5248 def err_typecheck_addrof_temporary : Error<
5249   "taking the address of a temporary object of type %0">;
5250 def err_typecheck_addrof_dtor : Error<
5251   "taking the address of a destructor">;
5252 def err_typecheck_unary_expr : Error<
5253   "invalid argument type %0 to unary expression">;
5254 def err_typecheck_indirection_requires_pointer : Error<
5255   "indirection requires pointer operand (%0 invalid)">;
5256 def ext_typecheck_indirection_through_void_pointer : ExtWarn<
5257   "ISO C++ does not allow indirection on operand of type %0">,
5258   InGroup<DiagGroup<"void-ptr-dereference">>;
5259 def warn_indirection_through_null : Warning<
5260   "indirection of non-volatile null pointer will be deleted, not trap">, InGroup<NullDereference>;
5261 def note_indirection_through_null : Note<
5262   "consider using __builtin_trap() or qualifying pointer with 'volatile'">;
5263 def warn_pointer_indirection_from_incompatible_type : Warning<
5264   "dereference of type %1 that was reinterpret_cast from type %0 has undefined "
5265   "behavior">,
5266   InGroup<UndefinedReinterpretCast>, DefaultIgnore;
5267
5268 def err_objc_object_assignment : Error<
5269   "cannot assign to class object (%0 invalid)">;
5270 def err_typecheck_invalid_operands : Error<
5271   "invalid operands to binary expression (%0 and %1)">;
5272 def err_typecheck_sub_ptr_compatible : Error<
5273   "%diff{$ and $ are not pointers to compatible types|"
5274   "pointers to incompatible types}0,1">;
5275 def ext_typecheck_ordered_comparison_of_pointer_integer : ExtWarn<
5276   "ordered comparison between pointer and integer (%0 and %1)">;
5277 def ext_typecheck_ordered_comparison_of_pointer_and_zero : Extension<
5278   "ordered comparison between pointer and zero (%0 and %1) is an extension">;
5279 def ext_typecheck_ordered_comparison_of_function_pointers : ExtWarn<
5280   "ordered comparison of function pointers (%0 and %1)">;
5281 def ext_typecheck_comparison_of_fptr_to_void : Extension<
5282   "equality comparison between function pointer and void pointer (%0 and %1)">;
5283 def err_typecheck_comparison_of_fptr_to_void : Error<
5284   "equality comparison between function pointer and void pointer (%0 and %1)">;
5285 def ext_typecheck_comparison_of_pointer_integer : ExtWarn<
5286   "comparison between pointer and integer (%0 and %1)">;
5287 def err_typecheck_comparison_of_pointer_integer : Error<
5288   "comparison between pointer and integer (%0 and %1)">;
5289 def ext_typecheck_comparison_of_distinct_pointers : ExtWarn<
5290   "comparison of distinct pointer types%diff{ ($ and $)|}0,1">,
5291   InGroup<CompareDistinctPointerType>;
5292 def ext_typecheck_cond_incompatible_operands : ExtWarn<
5293   "incompatible operand types (%0 and %1)">;
5294 def err_cond_voidptr_arc : Error <
5295   "operands to conditional of types%diff{ $ and $|}0,1 are incompatible "
5296   "in ARC mode">;
5297 def err_typecheck_comparison_of_distinct_pointers : Error<
5298   "comparison of distinct pointer types%diff{ ($ and $)|}0,1">;
5299 def ext_typecheck_comparison_of_distinct_pointers_nonstandard : ExtWarn<
5300   "comparison of distinct pointer types (%0 and %1) uses non-standard "
5301   "composite pointer type %2">, InGroup<CompareDistinctPointerType>;
5302 def err_typecheck_op_on_nonoverlapping_address_space_pointers : Error<
5303   "%select{comparison between %diff{ ($ and $)|}0,1"
5304   "|arithmetic operation with operands of type %diff{ ($ and $)|}0,1}2"
5305   " which are pointers to non-overlapping address spaces">;
5306
5307 def err_typecheck_assign_const : Error<
5308   "%select{"
5309   "cannot assign to return value because function %1 returns a const value|"
5310   "cannot assign to variable %1 with const-qualified type %2|"
5311   "cannot assign to %select{non-|}1static data member %2 "
5312   "with const-qualified type %3|"
5313   "cannot assign to non-static data member within const member function %1|"
5314   "read-only variable is not assignable}0">;
5315
5316 def note_typecheck_assign_const : Note<
5317   "%select{"
5318   "function %1 which returns const-qualified type %2 declared here|"
5319   "variable %1 declared const here|"
5320   "%select{non-|}1static data member %2 declared const here|"
5321   "member function %q1 is declared const here}0">;
5322
5323 def warn_mixed_sign_comparison : Warning<
5324   "comparison of integers of different signs: %0 and %1">,
5325   InGroup<SignCompare>, DefaultIgnore;
5326 def warn_lunsigned_always_true_comparison : Warning<
5327   "comparison of unsigned%select{| enum}2 expression %0 is always %1">,
5328   InGroup<TautologicalCompare>;
5329 def warn_out_of_range_compare : Warning<
5330   "comparison of %select{constant %0|true|false}1 with " 
5331   "%select{expression of type %2|boolean expression}3 is always "
5332   "%select{false|true}4">, InGroup<TautologicalOutOfRangeCompare>;
5333 def warn_runsigned_always_true_comparison : Warning<
5334   "comparison of %0 unsigned%select{| enum}2 expression is always %1">,
5335   InGroup<TautologicalCompare>;
5336 def warn_comparison_of_mixed_enum_types : Warning<
5337   "comparison of two values with different enumeration types"
5338   "%diff{ ($ and $)|}0,1">,
5339   InGroup<DiagGroup<"enum-compare">>;
5340 def warn_null_in_arithmetic_operation : Warning<
5341   "use of NULL in arithmetic operation">,
5342   InGroup<NullArithmetic>;
5343 def warn_null_in_comparison_operation : Warning<
5344   "comparison between NULL and non-pointer "
5345   "%select{(%1 and NULL)|(NULL and %1)}0">,
5346   InGroup<NullArithmetic>;
5347 def err_shift_rhs_only_vector : Error<
5348   "requested shift is a vector of type %0 but the first operand is not a "
5349   "vector (%1)">;
5350
5351 def warn_logical_not_on_lhs_of_comparison : Warning<
5352   "logical not is only applied to the left hand side of this comparison">,
5353   InGroup<LogicalNotParentheses>;
5354 def note_logical_not_fix : Note<
5355   "add parentheses after the '!' to evaluate the comparison first">;
5356 def note_logical_not_silence_with_parens : Note<
5357   "add parentheses around left hand side expression to silence this warning">;
5358
5359 def err_invalid_this_use : Error<
5360   "invalid use of 'this' outside of a non-static member function">;
5361 def err_this_static_member_func : Error<
5362   "'this' cannot be%select{| implicitly}0 used in a static member function "
5363   "declaration">;
5364 def err_invalid_member_use_in_static_method : Error<
5365   "invalid use of member %0 in static member function">;
5366 def err_invalid_qualified_function_type : Error<
5367   "%select{static |non-}0member function %select{of type %2 |}1"
5368   "cannot have '%3' qualifier">;
5369 def err_compound_qualified_function_type : Error<
5370   "%select{block pointer|pointer|reference}0 to function type %select{%2 |}1"
5371   "cannot have '%3' qualifier">;
5372
5373 def err_ref_qualifier_overload : Error<
5374   "cannot overload a member function %select{without a ref-qualifier|with "
5375   "ref-qualifier '&'|with ref-qualifier '&&'}0 with a member function %select{"
5376   "without a ref-qualifier|with ref-qualifier '&'|with ref-qualifier '&&'}1">;
5377
5378 def err_invalid_non_static_member_use : Error<
5379   "invalid use of non-static data member %0">;
5380 def err_nested_non_static_member_use : Error<
5381   "%select{call to non-static member function|use of non-static data member}0 "
5382   "%2 of %1 from nested type %3">;
5383 def warn_cxx98_compat_non_static_member_use : Warning<
5384   "use of non-static data member %0 in an unevaluated context is "
5385   "incompatible with C++98">, InGroup<CXX98Compat>, DefaultIgnore;
5386 def err_invalid_incomplete_type_use : Error<
5387   "invalid use of incomplete type %0">;
5388 def err_builtin_func_cast_more_than_one_arg : Error<
5389   "function-style cast to a builtin type can only take one argument">;
5390 def err_value_init_for_array_type : Error<
5391   "array types cannot be value-initialized">;
5392 def err_value_init_for_function_type : Error<
5393   "function types cannot be value-initialized">;
5394 def warn_format_nonliteral_noargs : Warning<
5395   "format string is not a string literal (potentially insecure)">,
5396   InGroup<FormatSecurity>;
5397 def warn_format_nonliteral : Warning<
5398   "format string is not a string literal">,
5399   InGroup<FormatNonLiteral>, DefaultIgnore;
5400
5401 def err_unexpected_interface : Error<
5402   "unexpected interface name %0: expected expression">;
5403 def err_ref_non_value : Error<"%0 does not refer to a value">;
5404 def err_ref_vm_type : Error<
5405   "cannot refer to declaration with a variably modified type inside block">;
5406 def err_ref_flexarray_type : Error<
5407   "cannot refer to declaration of structure variable with flexible array member "
5408   "inside block">;
5409 def err_ref_array_type : Error<
5410   "cannot refer to declaration with an array type inside block">;
5411 def err_property_not_found : Error<
5412   "property %0 not found on object of type %1">;
5413 def err_invalid_property_name : Error<
5414   "%0 is not a valid property name (accessing an object of type %1)">;
5415 def err_getter_not_found : Error<
5416   "no getter method for read from property">;
5417 def err_objc_subscript_method_not_found : Error<
5418   "expected method to %select{read|write}1 %select{dictionary|array}2 element not "
5419   "found on object of type %0">;
5420 def err_objc_subscript_index_type : Error<
5421   "method index parameter type %0 is not integral type">;
5422 def err_objc_subscript_key_type : Error<
5423   "method key parameter type %0 is not object type">;
5424 def err_objc_subscript_dic_object_type : Error<
5425   "method object parameter type %0 is not object type">;
5426 def err_objc_subscript_object_type : Error<
5427   "cannot assign to this %select{dictionary|array}1 because assigning method's "
5428   "2nd parameter of type %0 is not an Objective-C pointer type">;
5429 def err_objc_subscript_base_type : Error<
5430   "%select{dictionary|array}1 subscript base type %0 is not an Objective-C object">;
5431 def err_objc_multiple_subscript_type_conversion : Error<
5432   "indexing expression is invalid because subscript type %0 has "
5433   "multiple type conversion functions">;
5434 def err_objc_subscript_type_conversion : Error<
5435   "indexing expression is invalid because subscript type %0 is not an integral"
5436   " or Objective-C pointer type">;
5437 def err_objc_subscript_pointer : Error<
5438   "indexing expression is invalid because subscript type %0 is not an"
5439   " Objective-C pointer">;
5440 def err_objc_indexing_method_result_type : Error<
5441   "method for accessing %select{dictionary|array}1 element must have Objective-C"
5442   " object return type instead of %0">;
5443 def err_objc_index_incomplete_class_type : Error<
5444   "Objective-C index expression has incomplete class type %0">;
5445 def err_illegal_container_subscripting_op : Error<
5446   "illegal operation on Objective-C container subscripting">;
5447 def err_property_not_found_forward_class : Error<
5448   "property %0 cannot be found in forward class object %1">;
5449 def err_property_not_as_forward_class : Error<
5450   "property %0 refers to an incomplete Objective-C class %1 "
5451   "(with no @interface available)">;
5452 def note_forward_class : Note<
5453   "forward declaration of class here">;
5454 def err_duplicate_property : Error<
5455   "property has a previous declaration">;
5456 def ext_gnu_void_ptr : Extension<
5457   "arithmetic on%select{ a|}0 pointer%select{|s}0 to void is a GNU extension">,
5458   InGroup<PointerArith>;
5459 def ext_gnu_ptr_func_arith : Extension<
5460   "arithmetic on%select{ a|}0 pointer%select{|s}0 to%select{ the|}2 function "
5461   "type%select{|s}2 %1%select{| and %3}2 is a GNU extension">,
5462   InGroup<PointerArith>;
5463 def error_readonly_message_assignment : Error<
5464   "assigning to 'readonly' return result of an Objective-C message not allowed">;
5465 def ext_integer_increment_complex : Extension<
5466   "ISO C does not support '++'/'--' on complex integer type %0">;
5467 def ext_integer_complement_complex : Extension<
5468   "ISO C does not support '~' for complex conjugation of %0">;
5469 def err_nosetter_property_assignment : Error<
5470   "%select{assignment to readonly property|"
5471   "no setter method %1 for assignment to property}0">;
5472 def err_nosetter_property_incdec : Error<
5473   "%select{%select{increment|decrement}1 of readonly property|"
5474   "no setter method %2 for %select{increment|decrement}1 of property}0">;
5475 def err_nogetter_property_compound_assignment : Error<
5476   "a getter method is needed to perform a compound assignment on a property">;
5477 def err_nogetter_property_incdec : Error<
5478   "no getter method %1 for %select{increment|decrement}0 of property">;
5479 def error_no_subobject_property_setting : Error<
5480   "expression is not assignable">;
5481 def err_qualified_objc_access : Error<
5482   "%select{property|instance variable}0 access cannot be qualified with '%1'">;
5483   
5484 def ext_freestanding_complex : Extension<
5485   "complex numbers are an extension in a freestanding C99 implementation">;
5486
5487 // FIXME: Remove when we support imaginary.
5488 def err_imaginary_not_supported : Error<"imaginary types are not supported">;
5489
5490 // Obj-c expressions
5491 def warn_root_inst_method_not_found : Warning<
5492   "instance method %0 is being used on 'Class' which is not in the root class">,
5493   InGroup<MethodAccess>;
5494 def warn_class_method_not_found : Warning<
5495   "class method %objcclass0 not found (return type defaults to 'id')">,
5496   InGroup<MethodAccess>;
5497 def warn_instance_method_on_class_found : Warning<
5498   "instance method %0 found instead of class method %1">,
5499   InGroup<MethodAccess>;
5500 def warn_inst_method_not_found : Warning<
5501   "instance method %objcinstance0 not found (return type defaults to 'id')">,
5502   InGroup<MethodAccess>;
5503 def warn_instance_method_not_found_with_typo : Warning<
5504   "instance method %objcinstance0 not found (return type defaults to 'id')"
5505   "; did you mean %objcinstance2?">, InGroup<MethodAccess>;
5506 def warn_class_method_not_found_with_typo : Warning<
5507   "class method %objcclass0 not found (return type defaults to 'id')"
5508   "; did you mean %objcclass2?">, InGroup<MethodAccess>;
5509 def error_method_not_found_with_typo : Error<
5510   "%select{instance|class}1 method %0 not found "
5511   "; did you mean %2?">;
5512 def error_no_super_class_message : Error<
5513   "no @interface declaration found in class messaging of %0">;
5514 def error_root_class_cannot_use_super : Error<
5515   "%0 cannot use 'super' because it is a root class">;
5516 def err_invalid_receiver_to_message_super : Error<
5517   "'super' is only valid in a method body">;
5518 def err_invalid_receiver_class_message : Error<
5519   "receiver type %0 is not an Objective-C class">;
5520 def err_missing_open_square_message_send : Error<
5521   "missing '[' at start of message send expression">;
5522 def warn_bad_receiver_type : Warning<
5523   "receiver type %0 is not 'id' or interface pointer, consider "
5524   "casting it to 'id'">,InGroup<ObjCReceiver>;
5525 def err_bad_receiver_type : Error<"bad receiver type %0">;
5526 def err_incomplete_receiver_type : Error<"incomplete receiver type %0">;
5527 def err_unknown_receiver_suggest : Error<
5528   "unknown receiver %0; did you mean %1?">;
5529 def error_objc_throw_expects_object : Error<
5530   "@throw requires an Objective-C object type (%0 invalid)">;
5531 def error_objc_synchronized_expects_object : Error<
5532   "@synchronized requires an Objective-C object type (%0 invalid)">;
5533 def error_rethrow_used_outside_catch : Error<
5534   "@throw (rethrow) used outside of a @catch block">;
5535 def err_attribute_multiple_objc_gc : Error<
5536   "multiple garbage collection attributes specified for type">;
5537 def err_catch_param_not_objc_type : Error<
5538   "@catch parameter is not a pointer to an interface type">;
5539 def err_illegal_qualifiers_on_catch_parm : Error<
5540   "illegal qualifiers on @catch parameter">;
5541 def err_storage_spec_on_catch_parm : Error<
5542   "@catch parameter cannot have storage specifier '%0'">;
5543 def warn_register_objc_catch_parm : Warning<
5544   "'register' storage specifier on @catch parameter will be ignored">;
5545 def err_qualified_objc_catch_parm : Error<
5546   "@catch parameter declarator cannot be qualified">;
5547 def warn_objc_pointer_cxx_catch_fragile : Warning<
5548   "cannot catch an exception thrown with @throw in C++ in the non-unified "
5549   "exception model">, InGroup<ObjCNonUnifiedException>;
5550 def err_objc_object_catch : Error<
5551   "cannot catch an Objective-C object by value">;
5552 def err_incomplete_type_objc_at_encode : Error<
5553   "'@encode' of incomplete type %0">;
5554 def warn_objc_circular_container : Warning<
5555   "adding '%0' to '%1' might cause circular dependency in container">,
5556   InGroup<DiagGroup<"objc-circular-container">>;
5557 def note_objc_circular_container_declared_here : Note<"'%0' declared here">;
5558
5559 def warn_setter_getter_impl_required : Warning<
5560   "property %0 requires method %1 to be defined - "
5561   "use @synthesize, @dynamic or provide a method implementation "
5562   "in this class implementation">,
5563   InGroup<ObjCPropertyImpl>;
5564 def warn_setter_getter_impl_required_in_category : Warning<
5565   "property %0 requires method %1 to be defined - "
5566   "use @dynamic or provide a method implementation in this category">,
5567   InGroup<ObjCPropertyImpl>;
5568 def note_parameter_named_here : Note<
5569   "passing argument to parameter %0 here">;
5570 def note_parameter_here : Note<
5571   "passing argument to parameter here">;
5572 def note_method_return_type_change : Note<
5573   "compiler has implicitly changed method %0 return type">;
5574
5575 // C++ casts
5576 // These messages adhere to the TryCast pattern: %0 is an int specifying the
5577 // cast type, %1 is the source type, %2 is the destination type.
5578 def err_bad_reinterpret_cast_overload : Error<
5579   "reinterpret_cast cannot resolve overloaded function %0 to type %1">;
5580
5581 def warn_reinterpret_different_from_static : Warning<
5582   "'reinterpret_cast' %select{from|to}3 class %0 %select{to|from}3 its "
5583   "%select{virtual base|base at non-zero offset}2 %1 behaves differently from "
5584   "'static_cast'">, InGroup<ReinterpretBaseClass>;
5585 def note_reinterpret_updowncast_use_static: Note<
5586   "use 'static_cast' to adjust the pointer correctly while "
5587   "%select{upcasting|downcasting}0">;
5588
5589 def err_bad_static_cast_overload : Error<
5590   "address of overloaded function %0 cannot be static_cast to type %1">;
5591
5592 def err_bad_cstyle_cast_overload : Error<
5593   "address of overloaded function %0 cannot be cast to type %1">;
5594
5595
5596 def err_bad_cxx_cast_generic : Error<
5597   "%select{const_cast|static_cast|reinterpret_cast|dynamic_cast|C-style cast|"
5598   "functional-style cast}0 from %1 to %2 is not allowed">;
5599 def err_bad_cxx_cast_unrelated_class : Error<
5600   "%select{const_cast|static_cast|reinterpret_cast|dynamic_cast|C-style cast|"
5601   "functional-style cast}0 from %1 to %2, which are not related by "
5602   "inheritance, is not allowed">;
5603 def note_type_incomplete : Note<"%0 is incomplete">;
5604 def err_bad_cxx_cast_rvalue : Error<
5605   "%select{const_cast|static_cast|reinterpret_cast|dynamic_cast|C-style cast|"
5606   "functional-style cast}0 from rvalue to reference type %2">;
5607 def err_bad_cxx_cast_bitfield : Error<
5608   "%select{const_cast|static_cast|reinterpret_cast|dynamic_cast|C-style cast|"
5609   "functional-style cast}0 from bit-field lvalue to reference type %2">;
5610 def err_bad_cxx_cast_qualifiers_away : Error<
5611   "%select{const_cast|static_cast|reinterpret_cast|dynamic_cast|C-style cast|"
5612   "functional-style cast}0 from %1 to %2 casts away qualifiers">;
5613 def err_bad_const_cast_dest : Error<
5614   "%select{const_cast||||C-style cast|functional-style cast}0 to %2, "
5615   "which is not a reference, pointer-to-object, or pointer-to-data-member">;
5616 def ext_cast_fn_obj : Extension<
5617   "cast between pointer-to-function and pointer-to-object is an extension">;
5618 def ext_ms_cast_fn_obj : ExtWarn<
5619   "static_cast between pointer-to-function and pointer-to-object is a "
5620   "Microsoft extension">, InGroup<MicrosoftCast>;
5621 def warn_cxx98_compat_cast_fn_obj : Warning<
5622   "cast between pointer-to-function and pointer-to-object is incompatible with C++98">,
5623   InGroup<CXX98CompatPedantic>, DefaultIgnore;
5624 def err_bad_reinterpret_cast_small_int : Error<
5625   "cast from pointer to smaller type %2 loses information">;
5626 def err_bad_cxx_cast_vector_to_scalar_different_size : Error<
5627   "%select{||reinterpret_cast||C-style cast|}0 from vector %1 " 
5628   "to scalar %2 of different size">;
5629 def err_bad_cxx_cast_scalar_to_vector_different_size : Error<
5630   "%select{||reinterpret_cast||C-style cast|}0 from scalar %1 " 
5631   "to vector %2 of different size">;
5632 def err_bad_cxx_cast_vector_to_vector_different_size : Error<
5633   "%select{||reinterpret_cast||C-style cast|}0 from vector %1 " 
5634   "to vector %2 of different size">;
5635 def err_bad_lvalue_to_rvalue_cast : Error<
5636   "cannot cast from lvalue of type %1 to rvalue reference type %2; types are "
5637   "not compatible">;
5638 def err_bad_static_cast_pointer_nonpointer : Error<
5639   "cannot cast from type %1 to pointer type %2">;
5640 def err_bad_static_cast_member_pointer_nonmp : Error<
5641   "cannot cast from type %1 to member pointer type %2">;
5642 def err_bad_cxx_cast_member_pointer_size : Error<
5643   "cannot %select{||reinterpret_cast||C-style cast|}0 from member pointer "
5644   "type %1 to member pointer type %2 of different size">;
5645 def err_bad_reinterpret_cast_reference : Error<
5646   "reinterpret_cast of a %0 to %1 needs its address, which is not allowed">;
5647 def warn_undefined_reinterpret_cast : Warning<
5648   "reinterpret_cast from %0 to %1 has undefined behavior">,
5649   InGroup<UndefinedReinterpretCast>, DefaultIgnore;
5650
5651 // These messages don't adhere to the pattern.
5652 // FIXME: Display the path somehow better.
5653 def err_ambiguous_base_to_derived_cast : Error<
5654   "ambiguous cast from base %0 to derived %1:%2">;
5655 def err_static_downcast_via_virtual : Error<
5656   "cannot cast %0 to %1 via virtual base %2">;
5657 def err_downcast_from_inaccessible_base : Error<
5658   "cannot cast %select{private|protected}2 base class %1 to %0">;
5659 def err_upcast_to_inaccessible_base : Error<
5660   "cannot cast %0 to its %select{private|protected}2 base class %1">;
5661 def err_bad_dynamic_cast_not_ref_or_ptr : Error<
5662   "%0 is not a reference or pointer">;
5663 def err_bad_dynamic_cast_not_class : Error<"%0 is not a class">;
5664 def err_bad_dynamic_cast_incomplete : Error<"%0 is an incomplete type">;
5665 def err_bad_dynamic_cast_not_ptr : Error<"%0 is not a pointer">;
5666 def err_bad_dynamic_cast_not_polymorphic : Error<"%0 is not polymorphic">;
5667
5668 // Other C++ expressions
5669 def err_need_header_before_typeid : Error<
5670   "you need to include <typeinfo> before using the 'typeid' operator">;
5671 def err_need_header_before_ms_uuidof : Error<
5672   "you need to include <guiddef.h> before using the '__uuidof' operator">;
5673 def err_ms___leave_not_in___try : Error<
5674   "'__leave' statement not in __try block">;
5675 def err_uuidof_without_guid : Error<
5676   "cannot call operator __uuidof on a type with no GUID">;
5677 def err_uuidof_with_multiple_guids : Error<
5678   "cannot call operator __uuidof on a type with multiple GUIDs">;
5679 def err_incomplete_typeid : Error<"'typeid' of incomplete type %0">;
5680 def err_variably_modified_typeid : Error<"'typeid' of variably modified type %0">;
5681 def err_static_illegal_in_new : Error<
5682   "the 'static' modifier for the array size is not legal in new expressions">;
5683 def err_array_new_needs_size : Error<
5684   "array size must be specified in new expressions">;
5685 def err_bad_new_type : Error<
5686   "cannot allocate %select{function|reference}1 type %0 with new">;
5687 def err_new_incomplete_type : Error<
5688   "allocation of incomplete type %0">;
5689 def err_new_array_nonconst : Error<
5690   "only the first dimension of an allocated array may have dynamic size">;
5691 def err_new_array_init_args : Error<
5692   "array 'new' cannot have initialization arguments">;
5693 def ext_new_paren_array_nonconst : ExtWarn<
5694   "when type is in parentheses, array cannot have dynamic size">;
5695 def err_placement_new_non_placement_delete : Error<
5696   "'new' expression with placement arguments refers to non-placement "
5697   "'operator delete'">;
5698 def err_array_size_not_integral : Error<
5699   "array size expression must have integral or %select{|unscoped }0"
5700   "enumeration type, not %1">;
5701 def err_array_size_incomplete_type : Error<
5702   "array size expression has incomplete class type %0">;
5703 def err_array_size_explicit_conversion : Error<
5704   "array size expression of type %0 requires explicit conversion to type %1">;
5705 def note_array_size_conversion : Note<
5706   "conversion to %select{integral|enumeration}0 type %1 declared here">;
5707 def err_array_size_ambiguous_conversion : Error<
5708   "ambiguous conversion of array size expression of type %0 to an integral or "
5709   "enumeration type">;
5710 def ext_array_size_conversion : Extension<
5711   "implicit conversion from array size expression of type %0 to "
5712   "%select{integral|enumeration}1 type %2 is a C++11 extension">,
5713   InGroup<CXX11>;
5714 def warn_cxx98_compat_array_size_conversion : Warning<
5715   "implicit conversion from array size expression of type %0 to "
5716   "%select{integral|enumeration}1 type %2 is incompatible with C++98">,
5717   InGroup<CXX98CompatPedantic>, DefaultIgnore;
5718 def err_address_space_qualified_new : Error<
5719   "'new' cannot allocate objects of type %0 in address space '%1'">;
5720 def err_address_space_qualified_delete : Error<
5721   "'delete' cannot delete objects of type %0 in address space '%1'">;
5722
5723 def err_default_init_const : Error<
5724   "default initialization of an object of const type %0"
5725   "%select{| without a user-provided default constructor}1">;
5726 def ext_default_init_const : ExtWarn<
5727   "default initialization of an object of const type %0"
5728   "%select{| without a user-provided default constructor}1 "
5729   "is a Microsoft extension">,
5730   InGroup<MicrosoftConstInit>;
5731 def err_delete_operand : Error<"cannot delete expression of type %0">;
5732 def ext_delete_void_ptr_operand : ExtWarn<
5733   "cannot delete expression with pointer-to-'void' type %0">,
5734   InGroup<DeleteIncomplete>;
5735 def err_ambiguous_delete_operand : Error<
5736   "ambiguous conversion of delete expression of type %0 to a pointer">;
5737 def warn_delete_incomplete : Warning<
5738   "deleting pointer to incomplete type %0 may cause undefined behavior">,
5739   InGroup<DeleteIncomplete>;
5740 def err_delete_incomplete_class_type : Error<
5741   "deleting incomplete class type %0; no conversions to pointer type">;
5742 def err_delete_explicit_conversion : Error<
5743   "converting delete expression from type %0 to type %1 invokes an explicit "
5744   "conversion function">;
5745 def note_delete_conversion : Note<"conversion to pointer type %0">;
5746 def warn_delete_array_type : Warning<
5747   "'delete' applied to a pointer-to-array type %0 treated as 'delete[]'">;
5748 def warn_mismatched_delete_new : Warning<
5749   "'delete%select{|[]}0' applied to a pointer that was allocated with "
5750   "'new%select{[]|}0'; did you mean 'delete%select{[]|}0'?">,
5751   InGroup<DiagGroup<"mismatched-new-delete">>;
5752 def note_allocated_here : Note<"allocated with 'new%select{[]|}0' here">;
5753 def err_no_suitable_delete_member_function_found : Error<
5754   "no suitable member %0 in %1">;
5755 def err_ambiguous_suitable_delete_member_function_found : Error<
5756   "multiple suitable %0 functions in %1">;
5757 def note_member_declared_here : Note<
5758   "member %0 declared here">;
5759 def err_decrement_bool : Error<"cannot decrement expression of type bool">;
5760 def warn_increment_bool : Warning<
5761   "incrementing expression of type bool is deprecated and "
5762   "incompatible with C++1z">, InGroup<DeprecatedIncrementBool>;
5763 def ext_increment_bool : ExtWarn<
5764   "ISO C++1z does not allow incrementing expression of type bool">,
5765   DefaultError, InGroup<IncrementBool>;
5766 def err_increment_decrement_enum : Error<
5767   "cannot %select{decrement|increment}0 expression of enum type %1">;
5768 def err_catch_incomplete_ptr : Error<
5769   "cannot catch pointer to incomplete type %0">;
5770 def err_catch_incomplete_ref : Error<
5771   "cannot catch reference to incomplete type %0">;
5772 def err_catch_incomplete : Error<"cannot catch incomplete type %0">;
5773 def err_catch_rvalue_ref : Error<"cannot catch exceptions by rvalue reference">;
5774 def err_qualified_catch_declarator : Error<
5775   "exception declarator cannot be qualified">;
5776 def err_early_catch_all : Error<"catch-all handler must come last">;
5777 def err_bad_memptr_rhs : Error<
5778   "right hand operand to %0 has non-pointer-to-member type %1">;
5779 def err_bad_memptr_lhs : Error<
5780   "left hand operand to %0 must be a %select{|pointer to }1class "
5781   "compatible with the right hand operand, but is %2">;
5782 def warn_exception_caught_by_earlier_handler : Warning<
5783   "exception of type %0 will be caught by earlier handler">,
5784   InGroup<Exceptions>;
5785 def note_previous_exception_handler : Note<"for type %0">;
5786 def err_exceptions_disabled : Error<
5787   "cannot use '%0' with exceptions disabled">;
5788 def err_objc_exceptions_disabled : Error<
5789   "cannot use '%0' with Objective-C exceptions disabled">;
5790 def err_seh_try_outside_functions : Error<
5791   "cannot use SEH '__try' in blocks, captured regions, or Obj-C method decls">;
5792 def err_mixing_cxx_try_seh_try : Error<
5793   "cannot use C++ 'try' in the same function as SEH '__try'">;
5794 def err_seh_try_unsupported : Error<
5795   "SEH '__try' is not supported on this target">;
5796 def note_conflicting_try_here : Note<
5797   "conflicting %0 here">;
5798 def warn_jump_out_of_seh_finally : Warning<
5799   "jump out of __finally block has undefined behavior">,
5800   InGroup<DiagGroup<"jump-seh-finally">>;
5801 def warn_non_virtual_dtor : Warning<
5802   "%0 has virtual functions but non-virtual destructor">,
5803   InGroup<NonVirtualDtor>, DefaultIgnore;
5804 def warn_delete_non_virtual_dtor : Warning<
5805   "delete called on non-final %0 that has virtual functions "
5806   "but non-virtual destructor">,
5807   InGroup<DeleteNonVirtualDtor>, DefaultIgnore;
5808 def warn_delete_abstract_non_virtual_dtor : Warning<
5809   "delete called on %0 that is abstract but has non-virtual destructor">,
5810   InGroup<DeleteNonVirtualDtor>;
5811 def warn_overloaded_virtual : Warning<
5812   "%q0 hides overloaded virtual %select{function|functions}1">,
5813   InGroup<OverloadedVirtual>, DefaultIgnore;
5814 def note_hidden_overloaded_virtual_declared_here : Note<
5815   "hidden overloaded virtual function %q0 declared here"
5816   "%select{|: different classes%diff{ ($ vs $)|}2,3"
5817   "|: different number of parameters (%2 vs %3)"
5818   "|: type mismatch at %ordinal2 parameter%diff{ ($ vs $)|}3,4"
5819   "|: different return type%diff{ ($ vs $)|}2,3"
5820   "|: different qualifiers ("
5821   "%select{none|const|restrict|const and restrict|volatile|const and volatile|"
5822   "volatile and restrict|const, volatile, and restrict}2 vs "
5823   "%select{none|const|restrict|const and restrict|volatile|const and volatile|"
5824   "volatile and restrict|const, volatile, and restrict}3)}1">;
5825 def warn_using_directive_in_header : Warning<
5826   "using namespace directive in global context in header">,
5827   InGroup<HeaderHygiene>, DefaultIgnore;
5828 def warn_overaligned_type : Warning<
5829   "type %0 requires %1 bytes of alignment and the default allocator only "
5830   "guarantees %2 bytes">,
5831   InGroup<OveralignedType>, DefaultIgnore;
5832
5833 def err_conditional_void_nonvoid : Error<
5834   "%select{left|right}1 operand to ? is void, but %select{right|left}1 operand "
5835   "is of type %0">;
5836 def err_conditional_ambiguous : Error<
5837   "conditional expression is ambiguous; "
5838   "%diff{$ can be converted to $ and vice versa|"
5839   "types can be convert to each other}0,1">;
5840 def err_conditional_ambiguous_ovl : Error<
5841   "conditional expression is ambiguous; %diff{$ and $|types}0,1 "
5842   "can be converted to several common types">;
5843 def err_conditional_vector_size : Error<
5844   "vector condition type %0 and result type %1 do not have the same number "
5845   "of elements">;
5846 def err_conditional_vector_element_size : Error<
5847   "vector condition type %0 and result type %1 do not have elements of the "
5848   "same size">;
5849
5850 def err_throw_incomplete : Error<
5851   "cannot throw object of incomplete type %0">;
5852 def err_throw_incomplete_ptr : Error<
5853   "cannot throw pointer to object of incomplete type %0">;
5854 def err_return_in_constructor_handler : Error<
5855   "return in the catch of a function try block of a constructor is illegal">;
5856 def warn_cdtor_function_try_handler_mem_expr : Warning<
5857   "cannot refer to a non-static member from the handler of a "
5858   "%select{constructor|destructor}0 function try block">, InGroup<Exceptions>;
5859
5860 let CategoryName = "Lambda Issue" in {
5861   def err_capture_more_than_once : Error<
5862     "%0 can appear only once in a capture list">;
5863   def err_reference_capture_with_reference_default : Error<
5864     "'&' cannot precede a capture when the capture default is '&'">;
5865   def err_this_capture_with_copy_default : Error<
5866     "'this' cannot be explicitly captured when the capture default is '='">;
5867   def err_copy_capture_with_copy_default : Error<
5868     "'&' must precede a capture when the capture default is '='">;
5869   def err_capture_does_not_name_variable : Error<
5870     "%0 in capture list does not name a variable">;
5871   def err_capture_non_automatic_variable : Error<
5872     "%0 cannot be captured because it does not have automatic storage "
5873     "duration">;
5874   def err_this_capture : Error<
5875     "'this' cannot be %select{implicitly |}0captured in this context">;
5876   def err_lambda_capture_anonymous_var : Error<
5877     "unnamed variable cannot be implicitly captured in a lambda expression">;
5878   def err_lambda_capture_flexarray_type : Error<
5879     "variable %0 with flexible array member cannot be captured in "
5880     "a lambda expression">;
5881   def err_lambda_impcap : Error<
5882     "variable %0 cannot be implicitly captured in a lambda with no "
5883     "capture-default specified">;
5884   def note_lambda_decl : Note<"lambda expression begins here">;
5885   def err_lambda_unevaluated_operand : Error<
5886     "lambda expression in an unevaluated operand">;
5887   def err_lambda_in_constant_expression : Error<
5888     "a lambda expression may not appear inside of a constant expression">;
5889   def err_lambda_return_init_list : Error<
5890     "cannot deduce lambda return type from initializer list">;
5891   def err_lambda_capture_default_arg : Error<
5892     "lambda expression in default argument cannot capture any entity">;
5893   def err_lambda_incomplete_result : Error<
5894     "incomplete result type %0 in lambda expression">;
5895   def err_noreturn_lambda_has_return_expr : Error<
5896     "lambda declared 'noreturn' should not return">;
5897   def warn_maybe_falloff_nonvoid_lambda : Warning<
5898     "control may reach end of non-void lambda">,
5899     InGroup<ReturnType>;
5900   def warn_falloff_nonvoid_lambda : Warning<
5901     "control reaches end of non-void lambda">,
5902     InGroup<ReturnType>;
5903   def err_access_lambda_capture : Error<
5904     // The ERRORs represent other special members that aren't constructors, in
5905     // hopes that someone will bother noticing and reporting if they appear
5906     "capture of variable '%0' as type %1 calls %select{private|protected}3 "
5907     "%select{default |copy |move |*ERROR* |*ERROR* |*ERROR* |}2constructor">,
5908     AccessControl;
5909   def note_lambda_to_block_conv : Note<
5910     "implicit capture of lambda object due to conversion to block pointer "
5911     "here">;
5912
5913   // C++14 lambda init-captures.
5914   def warn_cxx11_compat_init_capture : Warning<
5915     "initialized lambda captures are incompatible with C++ standards "
5916     "before C++14">, InGroup<CXXPre14Compat>, DefaultIgnore;
5917   def ext_init_capture : ExtWarn<
5918     "initialized lambda captures are a C++14 extension">, InGroup<CXX14>;
5919   def err_init_capture_no_expression : Error<
5920     "initializer missing for lambda capture %0">;
5921   def err_init_capture_multiple_expressions : Error<
5922     "initializer for lambda capture %0 contains multiple expressions">;
5923   def err_init_capture_paren_braces : Error<
5924     "cannot deduce type for lambda capture %1 from "
5925     "%select{parenthesized|nested}0 initializer list">;
5926   def err_init_capture_deduction_failure : Error<
5927     "cannot deduce type for lambda capture %0 from initializer of type %2">;
5928   def err_init_capture_deduction_failure_from_init_list : Error<
5929     "cannot deduce type for lambda capture %0 from initializer list">;
5930 }
5931
5932 def err_return_in_captured_stmt : Error<
5933   "cannot return from %0">;
5934 def err_capture_block_variable : Error<
5935   "__block variable %0 cannot be captured in a "
5936   "%select{lambda expression|captured statement}1">;
5937
5938 def err_operator_arrow_circular : Error<
5939   "circular pointer delegation detected">;
5940 def err_operator_arrow_depth_exceeded : Error<
5941   "use of 'operator->' on type %0 would invoke a sequence of more than %1 "
5942   "'operator->' calls">;
5943 def note_operator_arrow_here : Note<
5944   "'operator->' declared here produces an object of type %0">;
5945 def note_operator_arrows_suppressed : Note<
5946   "(skipping %0 'operator->'%s0 in backtrace)">;
5947 def note_operator_arrow_depth : Note<
5948   "use -foperator-arrow-depth=N to increase 'operator->' limit">;
5949
5950 def err_pseudo_dtor_base_not_scalar : Error<
5951   "object expression of non-scalar type %0 cannot be used in a "
5952   "pseudo-destructor expression">;
5953 def ext_pseudo_dtor_on_void : ExtWarn<
5954   "pseudo-destructors on type void are a Microsoft extension">,
5955   InGroup<MicrosoftVoidPseudoDtor>;
5956 def err_pseudo_dtor_type_mismatch : Error<
5957   "the type of object expression "
5958   "%diff{($) does not match the type being destroyed ($)|"
5959   "does not match the type being destroyed}0,1 "
5960   "in pseudo-destructor expression">;
5961 def err_pseudo_dtor_call_with_args : Error<
5962   "call to pseudo-destructor cannot have any arguments">;
5963 def err_dtor_expr_without_call : Error<
5964   "reference to %select{destructor|pseudo-destructor}0 must be called"
5965   "%select{|; did you mean to call it with no arguments?}1">;
5966 def err_pseudo_dtor_destructor_non_type : Error<
5967   "%0 does not refer to a type name in pseudo-destructor expression; expected "
5968   "the name of type %1">;
5969 def err_invalid_use_of_function_type : Error<
5970   "a function type is not allowed here">;
5971 def err_invalid_use_of_array_type : Error<"an array type is not allowed here">;
5972 def err_typecheck_bool_condition : Error<
5973   "value of type %0 is not contextually convertible to 'bool'">;
5974 def err_typecheck_ambiguous_condition : Error<
5975   "conversion %diff{from $ to $|between types}0,1 is ambiguous">;
5976 def err_typecheck_nonviable_condition : Error<
5977   "no viable conversion%select{%diff{ from $ to $|}1,2|"
5978   "%diff{ from returned value of type $ to function return type $|}1,2}0">;
5979 def err_typecheck_nonviable_condition_incomplete : Error<
5980   "no viable conversion%diff{ from $ to incomplete type $|}0,1">;
5981 def err_typecheck_deleted_function : Error<
5982   "conversion function %diff{from $ to $|between types}0,1 "
5983   "invokes a deleted function">;
5984   
5985 def err_expected_class_or_namespace : Error<"%0 is not a class"
5986   "%select{ or namespace|, namespace, or enumeration}1">;
5987 def err_invalid_declarator_scope : Error<"cannot define or redeclare %0 here "
5988   "because namespace %1 does not enclose namespace %2">;
5989 def err_invalid_declarator_global_scope : Error<
5990   "definition or redeclaration of %0 cannot name the global scope">;
5991 def err_invalid_declarator_in_function : Error<
5992   "definition or redeclaration of %0 not allowed inside a function">;
5993 def err_invalid_declarator_in_block : Error<
5994   "definition or redeclaration of %0 not allowed inside a block">;
5995 def err_not_tag_in_scope : Error<
5996   "no %select{struct|interface|union|class|enum}0 named %1 in %2">;
5997
5998 def err_no_typeid_with_fno_rtti : Error<
5999   "cannot use typeid with -fno-rtti">;
6000 def err_no_dynamic_cast_with_fno_rtti : Error<
6001   "cannot use dynamic_cast with -fno-rtti">;
6002
6003 def err_cannot_form_pointer_to_member_of_reference_type : Error<
6004   "cannot form a pointer-to-member to member %0 of reference type %1">;
6005 def err_incomplete_object_call : Error<
6006   "incomplete type in call to object of type %0">;
6007
6008 def warn_condition_is_assignment : Warning<"using the result of an "
6009   "assignment as a condition without parentheses">,
6010   InGroup<Parentheses>;
6011 // Completely identical except off by default.
6012 def warn_condition_is_idiomatic_assignment : Warning<"using the result "
6013   "of an assignment as a condition without parentheses">,
6014   InGroup<DiagGroup<"idiomatic-parentheses">>, DefaultIgnore;
6015 def note_condition_assign_to_comparison : Note<
6016   "use '==' to turn this assignment into an equality comparison">;
6017 def note_condition_or_assign_to_comparison : Note<
6018   "use '!=' to turn this compound assignment into an inequality comparison">;
6019 def note_condition_assign_silence : Note<
6020   "place parentheses around the assignment to silence this warning">;
6021
6022 def warn_equality_with_extra_parens : Warning<"equality comparison with "
6023   "extraneous parentheses">, InGroup<ParenthesesOnEquality>;
6024 def note_equality_comparison_to_assign : Note<
6025   "use '=' to turn this equality comparison into an assignment">;
6026 def note_equality_comparison_silence : Note<
6027   "remove extraneous parentheses around the comparison to silence this warning">;
6028
6029 // assignment related diagnostics (also for argument passing, returning, etc).
6030 // In most of these diagnostics the %2 is a value from the
6031 // Sema::AssignmentAction enumeration
6032 def err_typecheck_convert_incompatible : Error<
6033   "%select{%diff{assigning to $ from incompatible type $|"
6034   "assigning to type from incompatible type}0,1"
6035   "|%diff{passing $ to parameter of incompatible type $|"
6036   "passing type to parameter of incompatible type}0,1"
6037   "|%diff{returning $ from a function with incompatible result type $|"
6038   "returning type from a function with incompatible result type}0,1"
6039   "|%diff{converting $ to incompatible type $|"
6040   "converting type to incompatible type}0,1"
6041   "|%diff{initializing $ with an expression of incompatible type $|"
6042   "initializing type with an expression of incompatible type}0,1"
6043   "|%diff{sending $ to parameter of incompatible type $|"
6044   "sending type to parameter of incompatible type}0,1"
6045   "|%diff{casting $ to incompatible type $|"
6046   "casting type to incompatible type}0,1}2"
6047   "%select{|; dereference with *|"
6048   "; take the address with &|"
6049   "; remove *|"
6050   "; remove &}3"
6051   "%select{|: different classes%diff{ ($ vs $)|}5,6"
6052   "|: different number of parameters (%5 vs %6)"
6053   "|: type mismatch at %ordinal5 parameter%diff{ ($ vs $)|}6,7"
6054   "|: different return type%diff{ ($ vs $)|}5,6"
6055   "|: different qualifiers ("
6056   "%select{none|const|restrict|const and restrict|volatile|const and volatile|"
6057   "volatile and restrict|const, volatile, and restrict}5 vs "
6058   "%select{none|const|restrict|const and restrict|volatile|const and volatile|"
6059   "volatile and restrict|const, volatile, and restrict}6)}4">;
6060 def err_typecheck_missing_return_type_incompatible : Error<
6061   "%diff{return type $ must match previous return type $|"
6062   "return type must match previous return type}0,1 when %select{block "
6063   "literal|lambda expression}2 has unspecified explicit return type">;
6064
6065 def not_incomplete_class_and_qualified_id : Note<
6066   "conformance of forward class %0 to protocol %1 can not be confirmed">;
6067 def warn_incompatible_qualified_id : Warning<
6068   "%select{%diff{assigning to $ from incompatible type $|"
6069   "assigning to type from incompatible type}0,1"
6070   "|%diff{passing $ to parameter of incompatible type $|"
6071   "passing type to parameter of incompatible type}0,1"
6072   "|%diff{returning $ from a function with incompatible result type $|"
6073   "returning type from a function with incompatible result type}0,1"
6074   "|%diff{converting $ to incompatible type $|"
6075   "converting type to incompatible type}0,1"
6076   "|%diff{initializing $ with an expression of incompatible type $|"
6077   "initializing type with an expression of incompatible type}0,1"
6078   "|%diff{sending $ to parameter of incompatible type $|"
6079   "sending type to parameter of incompatible type}0,1"
6080   "|%diff{casting $ to incompatible type $|"
6081   "casting type to incompatible type}0,1}2">;
6082 def ext_typecheck_convert_pointer_int : ExtWarn<
6083   "incompatible pointer to integer conversion "
6084   "%select{%diff{assigning to $ from $|assigning to different types}0,1"
6085   "|%diff{passing $ to parameter of type $|"
6086   "passing to parameter of different type}0,1"
6087   "|%diff{returning $ from a function with result type $|"
6088   "returning from function with different return type}0,1"
6089   "|%diff{converting $ to type $|converting between types}0,1"
6090   "|%diff{initializing $ with an expression of type $|"
6091   "initializing with expression of different type}0,1"
6092   "|%diff{sending $ to parameter of type $|"
6093   "sending to parameter of different type}0,1"
6094   "|%diff{casting $ to type $|casting between types}0,1}2"
6095   "%select{|; dereference with *|"
6096   "; take the address with &|"
6097   "; remove *|"
6098   "; remove &}3">,
6099   InGroup<IntConversion>;
6100 def ext_typecheck_convert_int_pointer : ExtWarn<
6101   "incompatible integer to pointer conversion "
6102   "%select{%diff{assigning to $ from $|assigning to different types}0,1"
6103   "|%diff{passing $ to parameter of type $|"
6104   "passing to parameter of different type}0,1"
6105   "|%diff{returning $ from a function with result type $|"
6106   "returning from function with different return type}0,1"
6107   "|%diff{converting $ to type $|converting between types}0,1"
6108   "|%diff{initializing $ with an expression of type $|"
6109   "initializing with expression of different type}0,1"
6110   "|%diff{sending $ to parameter of type $|"
6111   "sending to parameter of different type}0,1"
6112   "|%diff{casting $ to type $|casting between types}0,1}2"
6113   "%select{|; dereference with *|"
6114   "; take the address with &|"
6115   "; remove *|"
6116   "; remove &}3">,
6117   InGroup<IntConversion>;
6118 def ext_typecheck_convert_pointer_void_func : Extension<
6119   "%select{%diff{assigning to $ from $|assigning to different types}0,1"
6120   "|%diff{passing $ to parameter of type $|"
6121   "passing to parameter of different type}0,1"
6122   "|%diff{returning $ from a function with result type $|"
6123   "returning from function with different return type}0,1"
6124   "|%diff{converting $ to type $|converting between types}0,1"
6125   "|%diff{initializing $ with an expression of type $|"
6126   "initializing with expression of different type}0,1"
6127   "|%diff{sending $ to parameter of type $|"
6128   "sending to parameter of different type}0,1"
6129   "|%diff{casting $ to type $|casting between types}0,1}2"
6130   " converts between void pointer and function pointer">;
6131 def ext_typecheck_convert_incompatible_pointer_sign : ExtWarn<
6132   "%select{%diff{assigning to $ from $|assigning to different types}0,1"
6133   "|%diff{passing $ to parameter of type $|"
6134   "passing to parameter of different type}0,1"
6135   "|%diff{returning $ from a function with result type $|"
6136   "returning from function with different return type}0,1"
6137   "|%diff{converting $ to type $|converting between types}0,1"
6138   "|%diff{initializing $ with an expression of type $|"
6139   "initializing with expression of different type}0,1"
6140   "|%diff{sending $ to parameter of type $|"
6141   "sending to parameter of different type}0,1"
6142   "|%diff{casting $ to type $|casting between types}0,1}2"
6143   " converts between pointers to integer types with different sign">,
6144   InGroup<DiagGroup<"pointer-sign">>;
6145 def ext_typecheck_convert_incompatible_pointer : ExtWarn<
6146   "incompatible pointer types "
6147   "%select{%diff{assigning to $ from $|assigning to different types}0,1"
6148   "|%diff{passing $ to parameter of type $|"
6149   "passing to parameter of different type}0,1"
6150   "|%diff{returning $ from a function with result type $|"
6151   "returning from function with different return type}0,1"
6152   "|%diff{converting $ to type $|converting between types}0,1"
6153   "|%diff{initializing $ with an expression of type $|"
6154   "initializing with expression of different type}0,1"
6155   "|%diff{sending $ to parameter of type $|"
6156   "sending to parameter of different type}0,1"
6157   "|%diff{casting $ to type $|casting between types}0,1}2"
6158   "%select{|; dereference with *|"
6159   "; take the address with &|"
6160   "; remove *|"
6161   "; remove &}3">,
6162   InGroup<IncompatiblePointerTypes>;
6163 def ext_typecheck_convert_discards_qualifiers : ExtWarn<
6164   "%select{%diff{assigning to $ from $|assigning to different types}0,1"
6165   "|%diff{passing $ to parameter of type $|"
6166   "passing to parameter of different type}0,1"
6167   "|%diff{returning $ from a function with result type $|"
6168   "returning from function with different return type}0,1"
6169   "|%diff{converting $ to type $|converting between types}0,1"
6170   "|%diff{initializing $ with an expression of type $|"
6171   "initializing with expression of different type}0,1"
6172   "|%diff{sending $ to parameter of type $|"
6173   "sending to parameter of different type}0,1"
6174   "|%diff{casting $ to type $|casting between types}0,1}2"
6175   " discards qualifiers">,
6176   InGroup<IncompatiblePointerTypesDiscardsQualifiers>;
6177 def ext_nested_pointer_qualifier_mismatch : ExtWarn<
6178   "%select{%diff{assigning to $ from $|assigning to different types}0,1"
6179   "|%diff{passing $ to parameter of type $|"
6180   "passing to parameter of different type}0,1"
6181   "|%diff{returning $ from a function with result type $|"
6182   "returning from function with different return type}0,1"
6183   "|%diff{converting $ to type $|converting between types}0,1"
6184   "|%diff{initializing $ with an expression of type $|"
6185   "initializing with expression of different type}0,1"
6186   "|%diff{sending $ to parameter of type $|"
6187   "sending to parameter of different type}0,1"
6188   "|%diff{casting $ to type $|casting between types}0,1}2"
6189   " discards qualifiers in nested pointer types">,
6190   InGroup<IncompatiblePointerTypesDiscardsQualifiers>;
6191 def warn_incompatible_vectors : Warning<
6192   "incompatible vector types "
6193   "%select{%diff{assigning to $ from $|assigning to different types}0,1"
6194   "|%diff{passing $ to parameter of type $|"
6195   "passing to parameter of different type}0,1"
6196   "|%diff{returning $ from a function with result type $|"
6197   "returning from function with different return type}0,1"
6198   "|%diff{converting $ to type $|converting between types}0,1"
6199   "|%diff{initializing $ with an expression of type $|"
6200   "initializing with expression of different type}0,1"
6201   "|%diff{sending $ to parameter of type $|"
6202   "sending to parameter of different type}0,1"
6203   "|%diff{casting $ to type $|casting between types}0,1}2">,
6204   InGroup<VectorConversion>, DefaultIgnore;
6205 def err_int_to_block_pointer : Error<
6206   "invalid block pointer conversion "
6207   "%select{%diff{assigning to $ from $|assigning to different types}0,1"
6208   "|%diff{passing $ to parameter of type $|"
6209   "passing to parameter of different type}0,1"
6210   "|%diff{returning $ from a function with result type $|"
6211   "returning from function with different return type}0,1"
6212   "|%diff{converting $ to type $|converting between types}0,1"
6213   "|%diff{initializing $ with an expression of type $|"
6214   "initializing with expression of different type}0,1"
6215   "|%diff{sending $ to parameter of type $|"
6216   "sending to parameter of different type}0,1"
6217   "|%diff{casting $ to type $|casting between types}0,1}2">;
6218 def err_typecheck_convert_incompatible_block_pointer : Error<
6219   "incompatible block pointer types "
6220   "%select{%diff{assigning to $ from $|assigning to different types}0,1"
6221   "|%diff{passing $ to parameter of type $|"
6222   "passing to parameter of different type}0,1"
6223   "|%diff{returning $ from a function with result type $|"
6224   "returning from function with different return type}0,1"
6225   "|%diff{converting $ to type $|converting between types}0,1"
6226   "|%diff{initializing $ with an expression of type $|"
6227   "initializing with expression of different type}0,1"
6228   "|%diff{sending $ to parameter of type $|"
6229   "sending to parameter of different type}0,1"
6230   "|%diff{casting $ to type $|casting between types}0,1}2">;
6231 def err_typecheck_incompatible_address_space : Error<
6232   "%select{%diff{assigning $ to $|assigning to different types}1,0"
6233   "|%diff{passing $ to parameter of type $|"
6234   "passing to parameter of different type}0,1"
6235   "|%diff{returning $ from a function with result type $|"
6236   "returning from function with different return type}0,1"
6237   "|%diff{converting $ to type $|converting between types}0,1"
6238   "|%diff{initializing $ with an expression of type $|"
6239   "initializing with expression of different type}0,1"
6240   "|%diff{sending $ to parameter of type $|"
6241   "sending to parameter of different type}0,1"
6242   "|%diff{casting $ to type $|casting between types}0,1}2"
6243   " changes address space of pointer">;
6244 def err_typecheck_incompatible_ownership : Error<
6245   "%select{%diff{assigning $ to $|assigning to different types}1,0"
6246   "|%diff{passing $ to parameter of type $|"
6247   "passing to parameter of different type}0,1"
6248   "|%diff{returning $ from a function with result type $|"
6249   "returning from function with different return type}0,1"
6250   "|%diff{converting $ to type $|converting between types}0,1"
6251   "|%diff{initializing $ with an expression of type $|"
6252   "initializing with expression of different type}0,1"
6253   "|%diff{sending $ to parameter of type $|"
6254   "sending to parameter of different type}0,1"
6255   "|%diff{casting $ to type $|casting between types}0,1}2"
6256   " changes retain/release properties of pointer">;
6257 def err_typecheck_comparison_of_distinct_blocks : Error<
6258   "comparison of distinct block types%diff{ ($ and $)|}0,1">;
6259
6260 def err_typecheck_array_not_modifiable_lvalue : Error<
6261   "array type %0 is not assignable">;
6262 def err_typecheck_non_object_not_modifiable_lvalue : Error<
6263   "non-object type %0 is not assignable">;
6264 def err_typecheck_expression_not_modifiable_lvalue : Error<
6265   "expression is not assignable">;
6266 def err_typecheck_incomplete_type_not_modifiable_lvalue : Error<
6267   "incomplete type %0 is not assignable">;
6268 def err_typecheck_lvalue_casts_not_supported : Error<
6269   "assignment to cast is illegal, lvalue casts are not supported">;
6270
6271 def err_typecheck_duplicate_vector_components_not_mlvalue : Error<
6272   "vector is not assignable (contains duplicate components)">;
6273 def err_block_decl_ref_not_modifiable_lvalue : Error<
6274   "variable is not assignable (missing __block type specifier)">;
6275 def err_lambda_decl_ref_not_modifiable_lvalue : Error<
6276   "cannot assign to a variable captured by copy in a non-mutable lambda">;
6277 def err_typecheck_call_not_function : Error<
6278   "called object type %0 is not a function or function pointer">;
6279 def err_call_incomplete_return : Error<
6280   "calling function with incomplete return type %0">;
6281 def err_call_function_incomplete_return : Error<
6282   "calling %0 with incomplete return type %1">;
6283 def err_call_incomplete_argument : Error<
6284   "argument type %0 is incomplete">;
6285 def err_typecheck_call_too_few_args : Error<
6286   "too few %select{|||execution configuration }0arguments to "
6287   "%select{function|block|method|kernel function}0 call, "
6288   "expected %1, have %2">;
6289 def err_typecheck_call_too_few_args_one : Error<
6290   "too few %select{|||execution configuration }0arguments to "
6291   "%select{function|block|method|kernel function}0 call, "
6292   "single argument %1 was not specified">;
6293 def err_typecheck_call_too_few_args_at_least : Error<
6294   "too few %select{|||execution configuration }0arguments to "
6295   "%select{function|block|method|kernel function}0 call, "
6296   "expected at least %1, have %2">;
6297 def err_typecheck_call_too_few_args_at_least_one : Error<
6298   "too few %select{|||execution configuration }0arguments to "
6299   "%select{function|block|method|kernel function}0 call, "
6300   "at least argument %1 must be specified">;
6301 def err_typecheck_call_too_few_args_suggest : Error<
6302   "too few %select{|||execution configuration }0arguments to "
6303   "%select{function|block|method|kernel function}0 call, "
6304   "expected %1, have %2; did you mean %3?">;
6305 def err_typecheck_call_too_few_args_at_least_suggest : Error<
6306   "too few %select{|||execution configuration }0arguments to "
6307   "%select{function|block|method|kernel function}0 call, "
6308   "expected at least %1, have %2; did you mean %3?">;
6309 def err_typecheck_call_too_many_args : Error<
6310   "too many %select{|||execution configuration }0arguments to "
6311   "%select{function|block|method|kernel function}0 call, "
6312   "expected %1, have %2">;
6313 def err_typecheck_call_too_many_args_one : Error<
6314   "too many %select{|||execution configuration }0arguments to "
6315   "%select{function|block|method|kernel function}0 call, "
6316   "expected single argument %1, have %2 arguments">;
6317 def err_typecheck_call_too_many_args_at_most : Error<
6318   "too many %select{|||execution configuration }0arguments to "
6319   "%select{function|block|method|kernel function}0 call, "
6320   "expected at most %1, have %2">;
6321 def err_typecheck_call_too_many_args_at_most_one : Error<
6322   "too many %select{|||execution configuration }0arguments to "
6323   "%select{function|block|method|kernel function}0 call, "
6324   "expected at most single argument %1, have %2 arguments">;
6325 def err_typecheck_call_too_many_args_suggest : Error<
6326   "too many %select{|||execution configuration }0arguments to "
6327   "%select{function|block|method|kernel function}0 call, "
6328   "expected %1, have %2; did you mean %3?">;
6329 def err_typecheck_call_too_many_args_at_most_suggest : Error<
6330   "too many %select{|||execution configuration }0arguments to "
6331   "%select{function|block|method|kernel function}0 call, "
6332   "expected at most %1, have %2; did you mean %3?">;
6333   
6334 def err_arc_typecheck_convert_incompatible_pointer : Error<
6335   "incompatible pointer types passing retainable parameter of type %0"
6336   "to a CF function expecting %1 type">;
6337   
6338 def err_builtin_fn_use : Error<"builtin functions must be directly called">;
6339
6340 def warn_call_wrong_number_of_arguments : Warning<
6341   "too %select{few|many}0 arguments in call to %1">;
6342 def err_atomic_builtin_must_be_pointer : Error<
6343   "address argument to atomic builtin must be a pointer (%0 invalid)">;
6344 def err_atomic_builtin_must_be_pointer_intptr : Error<
6345   "address argument to atomic builtin must be a pointer to integer or pointer"
6346   " (%0 invalid)">;
6347 def err_atomic_builtin_must_be_pointer_intfltptr : Error<
6348   "address argument to atomic builtin must be a pointer to integer,"
6349   " floating-point or pointer (%0 invalid)">;
6350 def err_atomic_builtin_pointer_size : Error<
6351   "address argument to atomic builtin must be a pointer to 1,2,4,8 or 16 byte "
6352   "type (%0 invalid)">;
6353 def err_atomic_exclusive_builtin_pointer_size : Error<
6354   "address argument to load or store exclusive builtin must be a pointer to"
6355   " 1,2,4 or 8 byte type (%0 invalid)">;
6356 def err_atomic_op_needs_atomic : Error<
6357   "address argument to atomic operation must be a pointer to _Atomic "
6358   "type (%0 invalid)">;
6359 def err_atomic_op_needs_non_const_atomic : Error<
6360   "address argument to atomic operation must be a pointer to non-const _Atomic "
6361   "type (%0 invalid)">;
6362 def err_atomic_op_needs_non_const_pointer : Error<
6363   "address argument to atomic operation must be a pointer to non-const "
6364   "type (%0 invalid)">;
6365 def err_atomic_op_needs_trivial_copy : Error<
6366   "address argument to atomic operation must be a pointer to a "
6367   "trivially-copyable type (%0 invalid)">;
6368 def err_atomic_op_needs_atomic_int_or_ptr : Error<
6369   "address argument to atomic operation must be a pointer to %select{|atomic }0"
6370   "integer or pointer (%1 invalid)">;
6371 def err_atomic_op_bitwise_needs_atomic_int : Error<
6372   "address argument to bitwise atomic operation must be a pointer to "
6373   "%select{|atomic }0integer (%1 invalid)">;
6374 def warn_atomic_op_has_invalid_memory_order : Warning<
6375   "memory order argument to atomic operation is invalid">,
6376   InGroup<DiagGroup<"atomic-memory-ordering">>;
6377
6378 def err_overflow_builtin_must_be_int : Error<
6379   "operand argument to overflow builtin must be an integer (%0 invalid)">;
6380 def err_overflow_builtin_must_be_ptr_int : Error<
6381   "result argument to overflow builtin must be a pointer "
6382   "to a non-const integer (%0 invalid)">;
6383
6384 def err_atomic_load_store_uses_lib : Error<
6385   "atomic %select{load|store}0 requires runtime support that is not "
6386   "available for this target">;
6387
6388 def err_nontemporal_builtin_must_be_pointer : Error<
6389   "address argument to nontemporal builtin must be a pointer (%0 invalid)">;
6390 def err_nontemporal_builtin_must_be_pointer_intfltptr_or_vector : Error<
6391   "address argument to nontemporal builtin must be a pointer to integer, float, "
6392   "pointer, or a vector of such types (%0 invalid)">;
6393
6394 def err_deleted_function_use : Error<"attempt to use a deleted function">;
6395
6396 def err_kern_type_not_void_return : Error<
6397   "kernel function type %0 must have void return type">;
6398 def err_config_scalar_return : Error<
6399   "CUDA special function 'cudaConfigureCall' must have scalar return type">;
6400 def err_kern_call_not_global_function : Error<
6401   "kernel call to non-global function %0">;
6402 def err_global_call_not_config : Error<
6403   "call to global function %0 not configured">;
6404 def err_ref_bad_target : Error<
6405   "reference to %select{__device__|__global__|__host__|__host__ __device__}0 "
6406   "function %1 in %select{__device__|__global__|__host__|__host__ __device__}2 function">;
6407 def warn_host_calls_from_host_device : Warning<
6408   "calling __host__ function %0 from __host__ __device__ function %1 can lead to runtime errors">,
6409   InGroup<CudaCompat>;
6410
6411 def warn_non_pod_vararg_with_format_string : Warning<
6412   "cannot pass %select{non-POD|non-trivial}0 object of type %1 to variadic "
6413   "%select{function|block|method|constructor}2; expected type from format "
6414   "string was %3">, InGroup<NonPODVarargs>, DefaultError;
6415 // The arguments to this diagnostic should match the warning above.
6416 def err_cannot_pass_objc_interface_to_vararg_format : Error<
6417   "cannot pass object with interface type %1 by value to variadic "
6418   "%select{function|block|method|constructor}2; expected type from format "
6419   "string was %3">;
6420
6421 def err_cannot_pass_objc_interface_to_vararg : Error<
6422   "cannot pass object with interface type %0 by value through variadic "
6423   "%select{function|block|method|constructor}1">;
6424 def warn_cannot_pass_non_pod_arg_to_vararg : Warning<
6425   "cannot pass object of %select{non-POD|non-trivial}0 type %1 through variadic"
6426   " %select{function|block|method|constructor}2; call will abort at runtime">,
6427   InGroup<NonPODVarargs>, DefaultError;
6428 def warn_cxx98_compat_pass_non_pod_arg_to_vararg : Warning<
6429   "passing object of trivial but non-POD type %0 through variadic"
6430   " %select{function|block|method|constructor}1 is incompatible with C++98">,
6431   InGroup<CXX98Compat>, DefaultIgnore;
6432 def warn_pass_class_arg_to_vararg : Warning<
6433   "passing object of class type %0 through variadic "
6434   "%select{function|block|method|constructor}1"
6435   "%select{|; did you mean to call '%3'?}2">,
6436   InGroup<ClassVarargs>, DefaultIgnore;
6437 def err_cannot_pass_to_vararg : Error<
6438   "cannot pass %select{expression of type %1|initializer list}0 to variadic "
6439   "%select{function|block|method|constructor}2">;
6440 def err_cannot_pass_to_vararg_format : Error<
6441   "cannot pass %select{expression of type %1|initializer list}0 to variadic "
6442   "%select{function|block|method|constructor}2; expected type from format "
6443   "string was %3">;
6444
6445 def err_typecheck_call_invalid_ordered_compare : Error<
6446   "ordered compare requires two args of floating point type"
6447   "%diff{ ($ and $)|}0,1">;
6448 def err_typecheck_call_invalid_unary_fp : Error<
6449   "floating point classification requires argument of floating point type "
6450   "(passed in %0)">;
6451 def err_typecheck_cond_expect_int_float : Error<
6452   "used type %0 where integer or floating point type is required">;
6453 def err_typecheck_cond_expect_scalar : Error<
6454   "used type %0 where arithmetic or pointer type is required">;
6455 def err_typecheck_cond_expect_nonfloat : Error<
6456   "used type %0 where floating point type is not allowed">;
6457 def ext_typecheck_cond_one_void : Extension<
6458   "C99 forbids conditional expressions with only one void side">;
6459 def err_typecheck_cast_to_incomplete : Error<
6460   "cast to incomplete type %0">;
6461 def ext_typecheck_cast_nonscalar : Extension<
6462   "C99 forbids casting nonscalar type %0 to the same type">;
6463 def ext_typecheck_cast_to_union : Extension<
6464   "cast to union type is a GNU extension">,
6465   InGroup<GNUUnionCast>;
6466 def err_typecheck_cast_to_union_no_type : Error<
6467   "cast to union type from type %0 not present in union">;
6468 def err_cast_pointer_from_non_pointer_int : Error<
6469   "operand of type %0 cannot be cast to a pointer type">;
6470 def warn_cast_pointer_from_sel : Warning<
6471   "cast of type %0 to %1 is deprecated; use sel_getName instead">,
6472   InGroup<SelTypeCast>;
6473 def warn_function_def_in_objc_container : Warning<
6474   "function definition inside an Objective-C container is deprecated">,
6475   InGroup<FunctionDefInObjCContainer>;
6476   
6477 def warn_bad_function_cast : Warning<
6478   "cast from function call of type %0 to non-matching type %1">,
6479   InGroup<BadFunctionCast>, DefaultIgnore;
6480 def err_cast_pointer_to_non_pointer_int : Error<
6481   "pointer cannot be cast to type %0">;
6482 def err_typecheck_expect_scalar_operand : Error<
6483   "operand of type %0 where arithmetic or pointer type is required">;
6484 def err_typecheck_cond_incompatible_operands : Error<
6485   "incompatible operand types%diff{ ($ and $)|}0,1">;
6486 def ext_typecheck_cond_incompatible_operands_nonstandard : ExtWarn<
6487   "incompatible operand types%diff{ ($ and $)|}0,1 use non-standard composite "
6488   "pointer type %2">;
6489 def err_cast_selector_expr : Error<
6490   "cannot type cast @selector expression">;
6491 def ext_typecheck_cond_incompatible_pointers : ExtWarn<
6492   "pointer type mismatch%diff{ ($ and $)|}0,1">,
6493   InGroup<DiagGroup<"pointer-type-mismatch">>;
6494 def ext_typecheck_cond_pointer_integer_mismatch : ExtWarn<
6495   "pointer/integer type mismatch in conditional expression"
6496   "%diff{ ($ and $)|}0,1">,
6497   InGroup<DiagGroup<"conditional-type-mismatch">>;
6498 def err_typecheck_choose_expr_requires_constant : Error<
6499   "'__builtin_choose_expr' requires a constant expression">;
6500 def warn_unused_expr : Warning<"expression result unused">,
6501   InGroup<UnusedValue>;
6502 def warn_unused_voidptr : Warning<
6503   "expression result unused; should this cast be to 'void'?">,
6504   InGroup<UnusedValue>;
6505 def warn_unused_property_expr : Warning<
6506  "property access result unused - getters should not be used for side effects">,
6507   InGroup<UnusedGetterReturnValue>;
6508 def warn_unused_container_subscript_expr : Warning<
6509  "container access result unused - container access should not be used for side effects">,
6510   InGroup<UnusedValue>;
6511 def warn_unused_call : Warning<
6512   "ignoring return value of function declared with %0 attribute">,
6513   InGroup<UnusedValue>;
6514 def warn_side_effects_unevaluated_context : Warning<
6515   "expression with side effects has no effect in an unevaluated context">,
6516   InGroup<UnevaluatedExpression>;
6517 def warn_side_effects_typeid : Warning<
6518   "expression with side effects will be evaluated despite being used as an "
6519   "operand to 'typeid'">, InGroup<PotentiallyEvaluatedExpression>;
6520 def warn_unused_result : Warning<
6521   "ignoring return value of function declared with warn_unused_result "
6522   "attribute">, InGroup<DiagGroup<"unused-result">>;
6523 def warn_unused_volatile : Warning<
6524   "expression result unused; assign into a variable to force a volatile load">,
6525   InGroup<DiagGroup<"unused-volatile-lvalue">>;
6526
6527 def warn_unused_comparison : Warning<
6528   "%select{%select{|in}1equality|relational}0 comparison result unused">,
6529   InGroup<UnusedComparison>;
6530 def note_inequality_comparison_to_or_assign : Note<
6531   "use '|=' to turn this inequality comparison into an or-assignment">;
6532
6533 def err_incomplete_type_used_in_type_trait_expr : Error<
6534   "incomplete type %0 used in type trait expression">;
6535   
6536 def err_dimension_expr_not_constant_integer : Error<
6537   "dimension expression does not evaluate to a constant unsigned int">;
6538
6539 def err_typecheck_cond_incompatible_operands_null : Error<
6540   "non-pointer operand type %0 incompatible with %select{NULL|nullptr}1">;
6541 def ext_empty_struct_union : Extension<
6542   "empty %select{struct|union}0 is a GNU extension">, InGroup<GNUEmptyStruct>;
6543 def ext_no_named_members_in_struct_union : Extension<
6544   "%select{struct|union}0 without named members is a GNU extension">, InGroup<GNUEmptyStruct>;
6545 def warn_zero_size_struct_union_compat : Warning<"%select{|empty }0"
6546   "%select{struct|union}1 has size 0 in C, %select{size 1|non-zero size}2 in C++">,
6547   InGroup<CXXCompat>, DefaultIgnore;
6548 def warn_zero_size_struct_union_in_extern_c : Warning<"%select{|empty }0"
6549   "%select{struct|union}1 has size 0 in C, %select{size 1|non-zero size}2 in C++">,
6550   InGroup<ExternCCompat>;
6551 def warn_cast_qual : Warning<"cast from %0 to %1 drops %select{const and "
6552   "volatile qualifiers|const qualifier|volatile qualifier}2">,
6553   InGroup<CastQual>, DefaultIgnore;
6554 def warn_cast_qual2 : Warning<"cast from %0 to %1 must have all intermediate "
6555   "pointers const qualified to be safe">, InGroup<CastQual>, DefaultIgnore;
6556 def warn_redefine_extname_not_applied : Warning<
6557   "#pragma redefine_extname is applicable to external C declarations only; "
6558   "not applied to %select{function|variable}0 %1">,
6559   InGroup<Pragmas>;
6560 } // End of general sema category.
6561
6562 // inline asm.
6563 let CategoryName = "Inline Assembly Issue" in {
6564   def err_asm_invalid_lvalue_in_output : Error<"invalid lvalue in asm output">;
6565   def err_asm_invalid_output_constraint : Error<
6566     "invalid output constraint '%0' in asm">;
6567   def err_asm_invalid_lvalue_in_input : Error<
6568     "invalid lvalue in asm input for constraint '%0'">;
6569   def err_asm_invalid_input_constraint : Error<
6570     "invalid input constraint '%0' in asm">;
6571   def err_asm_immediate_expected : Error<"constraint '%0' expects "
6572     "an integer constant expression">;
6573   def err_asm_invalid_type_in_input : Error<
6574     "invalid type %0 in asm input for constraint '%1'">;
6575   def err_asm_tying_incompatible_types : Error<
6576     "unsupported inline asm: input with type "
6577     "%diff{$ matching output with type $|}0,1">;
6578   def err_asm_unexpected_constraint_alternatives : Error<
6579     "asm constraint has an unexpected number of alternatives: %0 vs %1">;
6580   def err_asm_incomplete_type : Error<"asm operand has incomplete type %0">;
6581   def err_asm_unknown_register_name : Error<"unknown register name '%0' in asm">;
6582   def err_asm_invalid_global_var_reg : Error<"register '%0' unsuitable for "
6583     "global register variables on this target">;
6584   def err_asm_register_size_mismatch : Error<"size of register '%0' does not "
6585     "match variable size">;
6586   def err_asm_bad_register_type : Error<"bad type for named register variable">;
6587   def err_asm_invalid_input_size : Error<
6588     "invalid input size for constraint '%0'">;
6589   def err_asm_invalid_output_size : Error<
6590     "invalid output size for constraint '%0'">;
6591   def err_invalid_asm_cast_lvalue : Error<
6592     "invalid use of a cast in a inline asm context requiring an l-value: "
6593     "remove the cast or build with -fheinous-gnu-extensions">;
6594   def err_invalid_asm_value_for_constraint
6595       : Error <"value '%0' out of range for constraint '%1'">;
6596   def err_asm_non_addr_value_in_memory_constraint : Error <
6597     "reference to a %select{bit-field|vector element|global register variable}0"
6598     " in asm %select{input|output}1 with a memory constraint '%2'">;
6599   def err_asm_input_duplicate_match : Error<
6600     "more than one input constraint matches the same output '%0'">;
6601
6602   def warn_asm_label_on_auto_decl : Warning<
6603     "ignored asm label '%0' on automatic variable">;
6604   def warn_invalid_asm_cast_lvalue : Warning<
6605     "invalid use of a cast in an inline asm context requiring an l-value: "
6606     "accepted due to -fheinous-gnu-extensions, but clang may remove support "
6607     "for this in the future">;
6608   def warn_asm_mismatched_size_modifier : Warning<
6609     "value size does not match register size specified by the constraint "
6610     "and modifier">,
6611     InGroup<ASMOperandWidths>;
6612
6613   def note_asm_missing_constraint_modifier : Note<
6614     "use constraint modifier \"%0\"">;
6615   def note_asm_input_duplicate_first : Note<
6616     "constraint '%0' is already present here">;
6617 }
6618
6619 let CategoryName = "Semantic Issue" in {
6620
6621 def err_invalid_conversion_between_vectors : Error<
6622   "invalid conversion between vector type%diff{ $ and $|}0,1 of different "
6623   "size">;
6624 def err_invalid_conversion_between_vector_and_integer : Error<
6625   "invalid conversion between vector type %0 and integer type %1 "
6626   "of different size">;
6627
6628 def err_opencl_function_pointer_variable : Error<
6629   "pointers to functions are not allowed">;
6630
6631 def err_opencl_taking_function_address : Error<
6632   "taking address of function is not allowed">;
6633
6634 def err_invalid_conversion_between_vector_and_scalar : Error<
6635   "invalid conversion between vector type %0 and scalar type %1">;
6636
6637 // C++ member initializers.
6638 def err_only_constructors_take_base_inits : Error<
6639   "only constructors take base initializers">;
6640
6641 def err_multiple_mem_initialization : Error <
6642   "multiple initializations given for non-static member %0">;
6643 def err_multiple_mem_union_initialization : Error <
6644   "initializing multiple members of union">;
6645 def err_multiple_base_initialization : Error <
6646   "multiple initializations given for base %0">;
6647
6648 def err_mem_init_not_member_or_class : Error<
6649   "member initializer %0 does not name a non-static data member or base "
6650   "class">;
6651
6652 def warn_initializer_out_of_order : Warning<
6653   "%select{field|base class}0 %1 will be initialized after "
6654   "%select{field|base}2 %3">,
6655   InGroup<Reorder>, DefaultIgnore;
6656 def warn_abstract_vbase_init_ignored : Warning<
6657   "initializer for virtual base class %0 of abstract class %1 "
6658   "will never be used">,
6659   InGroup<DiagGroup<"abstract-vbase-init">>, DefaultIgnore;
6660
6661 def err_base_init_does_not_name_class : Error<
6662   "constructor initializer %0 does not name a class">;
6663 def err_base_init_direct_and_virtual : Error<
6664   "base class initializer %0 names both a direct base class and an "
6665   "inherited virtual base class">;
6666 def err_not_direct_base_or_virtual : Error<
6667   "type %0 is not a direct or virtual base of %1">;
6668
6669 def err_in_class_initializer_non_const : Error<
6670   "non-const static data member must be initialized out of line">;
6671 def err_in_class_initializer_volatile : Error<
6672   "static const volatile data member must be initialized out of line">;
6673 def err_in_class_initializer_bad_type : Error<
6674   "static data member of type %0 must be initialized out of line">;
6675 def ext_in_class_initializer_float_type : ExtWarn<
6676   "in-class initializer for static data member of type %0 is a GNU extension">,
6677   InGroup<GNUStaticFloatInit>;
6678 def ext_in_class_initializer_float_type_cxx11 : ExtWarn<
6679   "in-class initializer for static data member of type %0 requires "
6680   "'constexpr' specifier">, InGroup<StaticFloatInit>, DefaultError;
6681 def note_in_class_initializer_float_type_cxx11 : Note<"add 'constexpr'">;
6682 def err_in_class_initializer_literal_type : Error<
6683   "in-class initializer for static data member of type %0 requires "
6684   "'constexpr' specifier">;
6685 def err_in_class_initializer_non_constant : Error<
6686   "in-class initializer for static data member is not a constant expression">;
6687 def err_in_class_initializer_not_yet_parsed
6688     : Error<"cannot use defaulted default constructor of %0 within the class "
6689             "outside of member functions because %1 has an initializer">;
6690 def err_in_class_initializer_not_yet_parsed_outer_class
6691     : Error<"cannot use defaulted default constructor of %0 within "
6692             "%1 outside of member functions because %2 has an initializer">;
6693
6694 def ext_in_class_initializer_non_constant : Extension<
6695   "in-class initializer for static data member is not a constant expression; "
6696   "folding it to a constant is a GNU extension">, InGroup<GNUFoldingConstant>;
6697
6698 def err_thread_dynamic_init : Error<
6699   "initializer for thread-local variable must be a constant expression">;
6700 def err_thread_nontrivial_dtor : Error<
6701   "type of thread-local variable has non-trivial destruction">;
6702 def note_use_thread_local : Note<
6703   "use 'thread_local' to allow this">;
6704
6705 // C++ anonymous unions and GNU anonymous structs/unions
6706 def ext_anonymous_union : Extension<
6707   "anonymous unions are a C11 extension">, InGroup<C11>;
6708 def ext_gnu_anonymous_struct : Extension<
6709   "anonymous structs are a GNU extension">, InGroup<GNUAnonymousStruct>;
6710 def ext_c11_anonymous_struct : Extension<
6711   "anonymous structs are a C11 extension">, InGroup<C11>;
6712 def err_anonymous_union_not_static : Error<
6713   "anonymous unions at namespace or global scope must be declared 'static'">;
6714 def err_anonymous_union_with_storage_spec : Error<
6715   "anonymous union at class scope must not have a storage specifier">;
6716 def err_anonymous_struct_not_member : Error<
6717   "anonymous %select{structs|structs and classes}0 must be "
6718   "%select{struct or union|class}0 members">;
6719 def err_anonymous_record_member_redecl : Error<
6720   "member of anonymous %select{struct|union}0 redeclares %1">;
6721 def err_anonymous_record_with_type : Error<
6722   "types cannot be declared in an anonymous %select{struct|union}0">;
6723 def ext_anonymous_record_with_type : Extension<
6724   "types declared in an anonymous %select{struct|union}0 are a Microsoft "
6725   "extension">, InGroup<MicrosoftAnonTag>;
6726 def ext_anonymous_record_with_anonymous_type : Extension<
6727   "anonymous types declared in an anonymous %select{struct|union}0 "
6728   "are an extension">, InGroup<DiagGroup<"nested-anon-types">>;
6729 def err_anonymous_record_with_function : Error<
6730   "functions cannot be declared in an anonymous %select{struct|union}0">;
6731 def err_anonymous_record_with_static : Error<
6732   "static members cannot be declared in an anonymous %select{struct|union}0">;
6733 def err_anonymous_record_bad_member : Error<
6734   "anonymous %select{struct|union}0 can only contain non-static data members">;
6735 def err_anonymous_record_nonpublic_member : Error<
6736   "anonymous %select{struct|union}0 cannot contain a "
6737   "%select{private|protected}1 data member">;
6738 def ext_ms_anonymous_record : ExtWarn<
6739   "anonymous %select{structs|unions}0 are a Microsoft extension">,
6740   InGroup<MicrosoftAnonTag>;
6741
6742 // C++ local classes
6743 def err_reference_to_local_var_in_enclosing_function : Error<
6744   "reference to local variable %0 declared in enclosing function %1">;
6745 def err_reference_to_local_var_in_enclosing_block : Error<
6746   "reference to local variable %0 declared in enclosing block literal">;
6747 def err_reference_to_local_var_in_enclosing_lambda : Error<
6748   "reference to local variable %0 declared in enclosing lambda expression">;
6749 def err_reference_to_local_var_in_enclosing_context : Error<
6750   "reference to local variable %0 declared in enclosing context">;
6751
6752 def err_static_data_member_not_allowed_in_local_class : Error<
6753   "static data member %0 not allowed in local class %1">; 
6754   
6755 // C++ derived classes
6756 def err_base_clause_on_union : Error<"unions cannot have base classes">;
6757 def err_base_must_be_class : Error<"base specifier must name a class">;
6758 def err_union_as_base_class : Error<"unions cannot be base classes">;
6759 def err_circular_inheritance : Error<
6760   "circular inheritance between %0 and %1">;
6761 def err_base_class_has_flexible_array_member : Error<
6762   "base class %0 has a flexible array member">;
6763 def err_incomplete_base_class : Error<"base class has incomplete type">;
6764 def err_duplicate_base_class : Error<
6765   "base class %0 specified more than once as a direct base class">;
6766 def warn_inaccessible_base_class : Warning<
6767   "direct base %0 is inaccessible due to ambiguity:%1">,
6768   InGroup<DiagGroup<"inaccessible-base">>;
6769 // FIXME: better way to display derivation?  Pass entire thing into diagclient?
6770 def err_ambiguous_derived_to_base_conv : Error<
6771   "ambiguous conversion from derived class %0 to base class %1:%2">;
6772 def err_ambiguous_memptr_conv : Error<
6773   "ambiguous conversion from pointer to member of %select{base|derived}0 "
6774   "class %1 to pointer to member of %select{derived|base}0 class %2:%3">;
6775
6776 def err_memptr_conv_via_virtual : Error<
6777   "conversion from pointer to member of class %0 to pointer to member "
6778   "of class %1 via virtual base %2 is not allowed">;
6779
6780 // C++ member name lookup
6781 def err_ambiguous_member_multiple_subobjects : Error<
6782   "non-static member %0 found in multiple base-class subobjects of type %1:%2">;
6783 def err_ambiguous_member_multiple_subobject_types : Error<
6784   "member %0 found in multiple base classes of different types">;
6785 def note_ambiguous_member_found : Note<"member found by ambiguous name lookup">;
6786 def err_ambiguous_reference : Error<"reference to %0 is ambiguous">;
6787 def note_ambiguous_candidate : Note<"candidate found by name lookup is %q0">;
6788 def err_ambiguous_tag_hiding : Error<"a type named %0 is hidden by a "
6789   "declaration in a different namespace">;
6790 def note_hidden_tag : Note<"type declaration hidden">;
6791 def note_hiding_object : Note<"declaration hides type">;
6792
6793 // C++ operator overloading
6794 def err_operator_overload_needs_class_or_enum : Error<
6795   "overloaded %0 must have at least one parameter of class "
6796   "or enumeration type">;
6797
6798 def err_operator_overload_variadic : Error<"overloaded %0 cannot be variadic">;
6799 def err_operator_overload_static : Error<
6800   "overloaded %0 cannot be a static member function">;
6801 def err_operator_overload_default_arg : Error<
6802   "parameter of overloaded %0 cannot have a default argument">;
6803 def err_operator_overload_must_be : Error<
6804   "overloaded %0 must be a %select{unary|binary|unary or binary}2 operator "
6805   "(has %1 parameter%s1)">;
6806
6807 def err_operator_overload_must_be_member : Error<
6808   "overloaded %0 must be a non-static member function">;
6809 def err_operator_overload_post_incdec_must_be_int : Error<
6810   "parameter of overloaded post-%select{increment|decrement}1 operator must "
6811   "have type 'int' (not %0)">;
6812
6813 // C++ allocation and deallocation functions.
6814 def err_operator_new_delete_declared_in_namespace : Error<
6815   "%0 cannot be declared inside a namespace">;
6816 def err_operator_new_delete_declared_static : Error<
6817   "%0 cannot be declared static in global scope">;
6818 def ext_operator_new_delete_declared_inline : ExtWarn<
6819   "replacement function %0 cannot be declared 'inline'">,
6820   InGroup<DiagGroup<"inline-new-delete">>;
6821 def err_operator_new_delete_invalid_result_type : Error<
6822   "%0 must return type %1">;
6823 def err_operator_new_delete_dependent_result_type : Error<
6824   "%0 cannot have a dependent return type; use %1 instead">;
6825 def err_operator_new_delete_too_few_parameters : Error<
6826   "%0 must have at least one parameter">;
6827 def err_operator_new_delete_template_too_few_parameters : Error<
6828   "%0 template must have at least two parameters">;
6829 def warn_operator_new_returns_null : Warning<
6830   "%0 should not return a null pointer unless it is declared 'throw()'"
6831   "%select{| or 'noexcept'}1">, InGroup<OperatorNewReturnsNull>;
6832
6833 def err_operator_new_dependent_param_type : Error<
6834   "%0 cannot take a dependent type as first parameter; "
6835   "use size_t (%1) instead">;
6836 def err_operator_new_param_type : Error<
6837   "%0 takes type size_t (%1) as first parameter">;
6838 def err_operator_new_default_arg: Error<
6839   "parameter of %0 cannot have a default argument">;
6840 def err_operator_delete_dependent_param_type : Error<
6841   "%0 cannot take a dependent type as first parameter; use %1 instead">;
6842 def err_operator_delete_param_type : Error<
6843   "first parameter of %0 must have type %1">;
6844
6845 // C++ literal operators
6846 def err_literal_operator_outside_namespace : Error<
6847   "literal operator %0 must be in a namespace or global scope">;
6848 def err_literal_operator_id_outside_namespace : Error<
6849   "non-namespace scope '%0' cannot have a literal operator member">;
6850 def err_literal_operator_default_argument : Error<
6851   "literal operator cannot have a default argument">;
6852 // FIXME: This diagnostic sucks
6853 def err_literal_operator_params : Error<
6854   "parameter declaration for literal operator %0 is not valid">;
6855 def err_literal_operator_extern_c : Error<
6856   "literal operator must have C++ linkage">;
6857 def ext_string_literal_operator_template : ExtWarn<
6858   "string literal operator templates are a GNU extension">,
6859   InGroup<GNUStringLiteralOperatorTemplate>;
6860 def warn_user_literal_reserved : Warning<
6861   "user-defined literal suffixes not starting with '_' are reserved"
6862   "%select{; no literal will invoke this operator|}0">,
6863   InGroup<UserDefinedLiterals>;
6864
6865 // C++ conversion functions
6866 def err_conv_function_not_member : Error<
6867   "conversion function must be a non-static member function">;
6868 def err_conv_function_return_type : Error<
6869   "conversion function cannot have a return type">;
6870 def err_conv_function_with_params : Error<
6871   "conversion function cannot have any parameters">;
6872 def err_conv_function_variadic : Error<
6873   "conversion function cannot be variadic">;
6874 def err_conv_function_to_array : Error<
6875   "conversion function cannot convert to an array type">;
6876 def err_conv_function_to_function : Error<
6877   "conversion function cannot convert to a function type">;
6878 def err_conv_function_with_complex_decl : Error<
6879   "cannot specify any part of a return type in the "
6880   "declaration of a conversion function"
6881   "%select{"
6882   "; put the complete type after 'operator'|"
6883   "; use a typedef to declare a conversion to %1|"
6884   "; use an alias template to declare a conversion to %1|"
6885   "}0">;
6886 def err_conv_function_redeclared : Error<
6887   "conversion function cannot be redeclared">;
6888 def warn_conv_to_self_not_used : Warning<
6889   "conversion function converting %0 to itself will never be used">;
6890 def warn_conv_to_base_not_used : Warning<
6891   "conversion function converting %0 to its base class %1 will never be used">;
6892 def warn_conv_to_void_not_used : Warning<
6893   "conversion function converting %0 to %1 will never be used">;
6894
6895 def warn_not_compound_assign : Warning<
6896   "use of unary operator that may be intended as compound assignment (%0=)">;
6897
6898 // C++11 explicit conversion operators
6899 def ext_explicit_conversion_functions : ExtWarn<
6900   "explicit conversion functions are a C++11 extension">, InGroup<CXX11>;
6901 def warn_cxx98_compat_explicit_conversion_functions : Warning<
6902   "explicit conversion functions are incompatible with C++98">,
6903   InGroup<CXX98Compat>, DefaultIgnore;
6904
6905 // C++11 defaulted functions
6906 def err_defaulted_special_member_params : Error<
6907   "an explicitly-defaulted %select{|copy |move }0constructor cannot "
6908   "have default arguments">;
6909 def err_defaulted_special_member_variadic : Error<
6910   "an explicitly-defaulted %select{|copy |move }0constructor cannot "
6911   "be variadic">;
6912 def err_defaulted_special_member_return_type : Error<
6913   "explicitly-defaulted %select{copy|move}0 assignment operator must "
6914   "return %1">;
6915 def err_defaulted_special_member_quals : Error<
6916   "an explicitly-defaulted %select{copy|move}0 assignment operator may not "
6917   "have 'const'%select{, 'constexpr'|}1 or 'volatile' qualifiers">;
6918 def err_defaulted_special_member_volatile_param : Error<
6919   "the parameter for an explicitly-defaulted %select{<<ERROR>>|"
6920   "copy constructor|move constructor|copy assignment operator|"
6921   "move assignment operator|<<ERROR>>}0 may not be volatile">;
6922 def err_defaulted_special_member_move_const_param : Error<
6923   "the parameter for an explicitly-defaulted move "
6924   "%select{constructor|assignment operator}0 may not be const">;
6925 def err_defaulted_special_member_copy_const_param : Error<
6926   "the parameter for this explicitly-defaulted copy "
6927   "%select{constructor|assignment operator}0 is const, but a member or base "
6928   "requires it to be non-const">;
6929 def err_defaulted_copy_assign_not_ref : Error<
6930   "the parameter for an explicitly-defaulted copy assignment operator must be an "
6931   "lvalue reference type">;
6932 def err_incorrect_defaulted_exception_spec : Error<
6933   "exception specification of explicitly defaulted %select{default constructor|"
6934   "copy constructor|move constructor|copy assignment operator|move assignment "
6935   "operator|destructor}0 does not match the "
6936   "calculated one">;
6937 def err_incorrect_defaulted_constexpr : Error<
6938   "defaulted definition of %select{default constructor|copy constructor|"
6939   "move constructor|copy assignment operator|move assignment operator}0 "
6940   "is not constexpr">;
6941 def err_out_of_line_default_deletes : Error<
6942   "defaulting this %select{default constructor|copy constructor|move "
6943   "constructor|copy assignment operator|move assignment operator|destructor}0 "
6944   "would delete it after its first declaration">;
6945 def warn_vbase_moved_multiple_times : Warning<
6946   "defaulted move assignment operator of %0 will move assign virtual base "
6947   "class %1 multiple times">, InGroup<DiagGroup<"multiple-move-vbase">>;
6948 def note_vbase_moved_here : Note<
6949   "%select{%1 is a virtual base class of base class %2 declared here|"
6950   "virtual base class %1 declared here}0">;
6951
6952 def ext_implicit_exception_spec_mismatch : ExtWarn<
6953   "function previously declared with an %select{explicit|implicit}0 exception "
6954   "specification redeclared with an %select{implicit|explicit}0 exception "
6955   "specification">, InGroup<DiagGroup<"implicit-exception-spec-mismatch">>;
6956
6957 def warn_ptr_arith_precedes_bounds : Warning<
6958   "the pointer decremented by %0 refers before the beginning of the array">,
6959   InGroup<ArrayBoundsPointerArithmetic>, DefaultIgnore;
6960 def warn_ptr_arith_exceeds_bounds : Warning<
6961   "the pointer incremented by %0 refers past the end of the array (that "
6962   "contains %1 element%s2)">,
6963   InGroup<ArrayBoundsPointerArithmetic>, DefaultIgnore;
6964 def warn_array_index_precedes_bounds : Warning<
6965   "array index %0 is before the beginning of the array">,
6966   InGroup<ArrayBounds>;
6967 def warn_array_index_exceeds_bounds : Warning<
6968   "array index %0 is past the end of the array (which contains %1 "
6969   "element%s2)">, InGroup<ArrayBounds>;
6970 def note_array_index_out_of_bounds : Note<
6971   "array %0 declared here">;
6972
6973 def warn_printf_insufficient_data_args : Warning<
6974   "more '%%' conversions than data arguments">, InGroup<Format>;
6975 def warn_printf_data_arg_not_used : Warning<
6976   "data argument not used by format string">, InGroup<FormatExtraArgs>;
6977 def warn_format_invalid_conversion : Warning<
6978   "invalid conversion specifier '%0'">, InGroup<FormatInvalidSpecifier>;
6979 def warn_printf_incomplete_specifier : Warning<
6980   "incomplete format specifier">, InGroup<Format>;
6981 def warn_missing_format_string : Warning<
6982   "format string missing">, InGroup<Format>;
6983 def warn_scanf_nonzero_width : Warning<
6984   "zero field width in scanf format string is unused">,
6985   InGroup<Format>;
6986 def warn_format_conversion_argument_type_mismatch : Warning<
6987   "format specifies type %0 but the argument has "
6988   "%select{type|underlying type}2 %1">,
6989   InGroup<Format>;
6990 def warn_format_conversion_argument_type_mismatch_pedantic : Extension<
6991   "format specifies type %0 but the argument has "
6992   "%select{type|underlying type}2 %1">,
6993   InGroup<FormatPedantic>;
6994 def warn_format_argument_needs_cast : Warning<
6995   "%select{values of type|enum values with underlying type}2 '%0' should not "
6996   "be used as format arguments; add an explicit cast to %1 instead">,
6997   InGroup<Format>;
6998 def warn_printf_positional_arg_exceeds_data_args : Warning <
6999   "data argument position '%0' exceeds the number of data arguments (%1)">,
7000   InGroup<Format>;
7001 def warn_format_zero_positional_specifier : Warning<
7002   "position arguments in format strings start counting at 1 (not 0)">,
7003   InGroup<Format>;
7004 def warn_format_invalid_positional_specifier : Warning<
7005   "invalid position specified for %select{field width|field precision}0">,
7006   InGroup<Format>;
7007 def warn_format_mix_positional_nonpositional_args : Warning<
7008   "cannot mix positional and non-positional arguments in format string">,
7009   InGroup<Format>;
7010 def warn_static_array_too_small : Warning<
7011   "array argument is too small; contains %0 elements, callee requires at least %1">,
7012   InGroup<ArrayBounds>;
7013 def note_callee_static_array : Note<
7014   "callee declares array parameter as static here">;
7015 def warn_empty_format_string : Warning<
7016   "format string is empty">, InGroup<FormatZeroLength>;
7017 def warn_format_string_is_wide_literal : Warning<
7018   "format string should not be a wide string">, InGroup<Format>;
7019 def warn_printf_format_string_contains_null_char : Warning<
7020   "format string contains '\\0' within the string body">, InGroup<Format>;
7021 def warn_printf_format_string_not_null_terminated : Warning<
7022   "format string is not null-terminated">, InGroup<Format>;
7023 def warn_printf_asterisk_missing_arg : Warning<
7024   "'%select{*|.*}0' specified field %select{width|precision}0 is missing a matching 'int' argument">,
7025   InGroup<Format>;
7026 def warn_printf_asterisk_wrong_type : Warning<
7027   "field %select{width|precision}0 should have type %1, but argument has type %2">,
7028   InGroup<Format>;
7029 def warn_printf_nonsensical_optional_amount: Warning<
7030   "%select{field width|precision}0 used with '%1' conversion specifier, resulting in undefined behavior">,
7031   InGroup<Format>;
7032 def warn_printf_nonsensical_flag: Warning<
7033   "flag '%0' results in undefined behavior with '%1' conversion specifier">,
7034   InGroup<Format>;
7035 def warn_format_nonsensical_length: Warning<
7036   "length modifier '%0' results in undefined behavior or no effect with '%1' conversion specifier">,
7037   InGroup<Format>;
7038 def warn_format_non_standard_positional_arg: Warning<
7039   "positional arguments are not supported by ISO C">, InGroup<FormatNonStandard>, DefaultIgnore;
7040 def warn_format_non_standard: Warning<
7041   "'%0' %select{length modifier|conversion specifier}1 is not supported by ISO C">,
7042   InGroup<FormatNonStandard>, DefaultIgnore;
7043 def warn_format_non_standard_conversion_spec: Warning<
7044   "using length modifier '%0' with conversion specifier '%1' is not supported by ISO C">,
7045   InGroup<FormatNonStandard>, DefaultIgnore;
7046 def warn_printf_ignored_flag: Warning<
7047   "flag '%0' is ignored when flag '%1' is present">,
7048   InGroup<Format>;
7049 def warn_printf_empty_objc_flag: Warning<
7050   "missing object format flag">,
7051   InGroup<Format>;
7052 def warn_printf_ObjCflags_without_ObjCConversion: Warning<
7053   "object format flags cannot be used with '%0' conversion specifier">,
7054   InGroup<Format>;
7055 def warn_printf_invalid_objc_flag: Warning<
7056     "'%0' is not a valid object format flag">,
7057     InGroup<Format>;
7058 def warn_scanf_scanlist_incomplete : Warning<
7059   "no closing ']' for '%%[' in scanf format string">,
7060   InGroup<Format>;
7061 def note_format_string_defined : Note<"format string is defined here">;
7062 def note_format_fix_specifier : Note<"did you mean to use '%0'?">;
7063 def note_printf_c_str: Note<"did you mean to call the %0 method?">;
7064
7065 def warn_null_arg : Warning<
7066   "null passed to a callee that requires a non-null argument">,
7067   InGroup<NonNull>;
7068 def warn_null_ret : Warning<
7069   "null returned from %select{function|method}0 that requires a non-null return value">,
7070   InGroup<NonNull>;
7071
7072 // CHECK: returning address/reference of stack memory
7073 def warn_ret_stack_addr_ref : Warning<
7074   "%select{address of|reference to}0 stack memory associated with local "
7075   "variable %1 returned">,
7076   InGroup<ReturnStackAddress>;
7077 def warn_ret_local_temp_addr_ref : Warning<
7078   "returning %select{address of|reference to}0 local temporary object">,
7079   InGroup<ReturnStackAddress>;
7080 def warn_ret_addr_label : Warning<
7081   "returning address of label, which is local">,
7082   InGroup<ReturnStackAddress>;
7083 def err_ret_local_block : Error<
7084   "returning block that lives on the local stack">;
7085 def note_ref_var_local_bind : Note<
7086   "binding reference variable %0 here">;
7087
7088 // Check for initializing a member variable with the address or a reference to
7089 // a constructor parameter.
7090 def warn_bind_ref_member_to_parameter : Warning<
7091   "binding reference member %0 to stack allocated parameter %1">,
7092   InGroup<DanglingField>;
7093 def warn_init_ptr_member_to_parameter_addr : Warning<
7094   "initializing pointer member %0 with the stack address of parameter %1">,
7095   InGroup<DanglingField>;
7096 def warn_bind_ref_member_to_temporary : Warning<
7097   "binding reference %select{|subobject of }1member %0 to a temporary value">,
7098   InGroup<DanglingField>;
7099 def note_ref_or_ptr_member_declared_here : Note<
7100   "%select{reference|pointer}0 member declared here">;
7101 def note_ref_subobject_of_member_declared_here : Note<
7102   "member with reference subobject declared here">;
7103
7104 // For non-floating point, expressions of the form x == x or x != x
7105 // should result in a warning, since these always evaluate to a constant.
7106 // Array comparisons have similar warnings
7107 def warn_comparison_always : Warning<
7108   "%select{self-|array }0comparison always evaluates to %select{false|true|a constant}1">,
7109   InGroup<TautologicalCompare>;
7110 def warn_comparison_bitwise_always : Warning<
7111   "bitwise comparison always evaluates to %select{false|true}0">,
7112   InGroup<TautologicalCompare>;
7113 def warn_tautological_overlap_comparison : Warning<
7114   "overlapping comparisons always evaluate to %select{false|true}0">,
7115   InGroup<TautologicalOverlapCompare>, DefaultIgnore;
7116
7117 def warn_stringcompare : Warning<
7118   "result of comparison against %select{a string literal|@encode}0 is "
7119   "unspecified (use strncmp instead)">,
7120   InGroup<StringCompare>;
7121
7122 def warn_identity_field_assign : Warning<
7123   "assigning %select{field|instance variable}0 to itself">,
7124   InGroup<SelfAssignmentField>;
7125
7126 // Type safety attributes
7127 def err_type_tag_for_datatype_not_ice : Error<
7128   "'type_tag_for_datatype' attribute requires the initializer to be "
7129   "an %select{integer|integral}0 constant expression">;
7130 def err_type_tag_for_datatype_too_large : Error<
7131   "'type_tag_for_datatype' attribute requires the initializer to be "
7132   "an %select{integer|integral}0 constant expression "
7133   "that can be represented by a 64 bit integer">;
7134 def warn_type_tag_for_datatype_wrong_kind : Warning<
7135   "this type tag was not designed to be used with this function">,
7136   InGroup<TypeSafety>;
7137 def warn_type_safety_type_mismatch : Warning<
7138   "argument type %0 doesn't match specified %1 type tag "
7139   "%select{that requires %3|}2">, InGroup<TypeSafety>;
7140 def warn_type_safety_null_pointer_required : Warning<
7141   "specified %0 type tag requires a null pointer">, InGroup<TypeSafety>;
7142
7143 // Generic selections.
7144 def err_assoc_type_incomplete : Error<
7145   "type %0 in generic association incomplete">;
7146 def err_assoc_type_nonobject : Error<
7147   "type %0 in generic association not an object type">;
7148 def err_assoc_type_variably_modified : Error<
7149   "type %0 in generic association is a variably modified type">;
7150 def err_assoc_compatible_types : Error<
7151   "type %0 in generic association compatible with previously specified type %1">;
7152 def note_compat_assoc : Note<
7153   "compatible type %0 specified here">;
7154 def err_generic_sel_no_match : Error<
7155   "controlling expression type %0 not compatible with any generic association type">;
7156 def err_generic_sel_multi_match : Error<
7157   "controlling expression type %0 compatible with %1 generic association types">;
7158
7159
7160 // Blocks
7161 def err_blocks_disable : Error<"blocks support disabled - compile with -fblocks"
7162   " or pick a deployment target that supports them">;
7163 def err_block_returning_array_function : Error<
7164   "block cannot return %select{array|function}0 type %1">;
7165
7166 // Builtin annotation
7167 def err_builtin_annotation_first_arg : Error<
7168   "first argument to __builtin_annotation must be an integer">;
7169 def err_builtin_annotation_second_arg : Error<
7170   "second argument to __builtin_annotation must be a non-wide string constant">;
7171
7172 // CFString checking
7173 def err_cfstring_literal_not_string_constant : Error<
7174   "CFString literal is not a string constant">;
7175 def warn_cfstring_truncated : Warning<
7176   "input conversion stopped due to an input byte that does not "
7177   "belong to the input codeset UTF-8">,
7178   InGroup<DiagGroup<"CFString-literal">>;
7179
7180 // Statements.
7181 def err_continue_not_in_loop : Error<
7182   "'continue' statement not in loop statement">;
7183 def err_break_not_in_loop_or_switch : Error<
7184   "'break' statement not in loop or switch statement">;
7185 def warn_loop_ctrl_binds_to_inner : Warning<
7186   "'%0' is bound to current loop, GCC binds it to the enclosing loop">,
7187   InGroup<GccCompat>;
7188 def warn_break_binds_to_switch : Warning<
7189   "'break' is bound to loop, GCC binds it to switch">,
7190   InGroup<GccCompat>;
7191 def err_default_not_in_switch : Error<
7192   "'default' statement not in switch statement">;
7193 def err_case_not_in_switch : Error<"'case' statement not in switch statement">;
7194 def warn_bool_switch_condition : Warning<
7195   "switch condition has boolean value">, InGroup<SwitchBool>;
7196 def warn_case_value_overflow : Warning<
7197   "overflow converting case value to switch condition type (%0 to %1)">,
7198   InGroup<Switch>;
7199 def err_duplicate_case : Error<"duplicate case value '%0'">;
7200 def err_duplicate_case_differing_expr : Error<
7201   "duplicate case value: '%0' and '%1' both equal '%2'">;
7202 def warn_case_empty_range : Warning<"empty case range specified">;
7203 def warn_missing_case_for_condition :
7204   Warning<"no case matching constant switch condition '%0'">;
7205
7206 def warn_def_missing_case : Warning<"%plural{"
7207   "1:enumeration value %1 not explicitly handled in switch|"
7208   "2:enumeration values %1 and %2 not explicitly handled in switch|"
7209   "3:enumeration values %1, %2, and %3 not explicitly handled in switch|"
7210   ":%0 enumeration values not explicitly handled in switch: %1, %2, %3...}0">,
7211   InGroup<SwitchEnum>, DefaultIgnore;
7212
7213 def warn_missing_case : Warning<"%plural{"
7214   "1:enumeration value %1 not handled in switch|"
7215   "2:enumeration values %1 and %2 not handled in switch|"
7216   "3:enumeration values %1, %2, and %3 not handled in switch|"
7217   ":%0 enumeration values not handled in switch: %1, %2, %3...}0">,
7218   InGroup<Switch>;
7219
7220 def warn_unannotated_fallthrough : Warning<
7221   "unannotated fall-through between switch labels">,
7222   InGroup<ImplicitFallthrough>, DefaultIgnore;
7223 def warn_unannotated_fallthrough_per_function : Warning<
7224   "unannotated fall-through between switch labels in partly-annotated "
7225   "function">, InGroup<ImplicitFallthroughPerFunction>, DefaultIgnore;
7226 def note_insert_fallthrough_fixit : Note<
7227   "insert '%0;' to silence this warning">;
7228 def note_insert_break_fixit : Note<
7229   "insert 'break;' to avoid fall-through">;
7230 def err_fallthrough_attr_wrong_target : Error<
7231   "clang::fallthrough attribute is only allowed on empty statements">;
7232 def note_fallthrough_insert_semi_fixit : Note<"did you forget ';'?">;
7233 def err_fallthrough_attr_outside_switch : Error<
7234   "fallthrough annotation is outside switch statement">;
7235 def warn_fallthrough_attr_invalid_placement : Warning<
7236   "fallthrough annotation does not directly precede switch label">,
7237   InGroup<ImplicitFallthrough>;
7238 def warn_fallthrough_attr_unreachable : Warning<
7239   "fallthrough annotation in unreachable code">,
7240   InGroup<ImplicitFallthrough>;
7241
7242 def warn_unreachable_default : Warning<
7243   "default label in switch which covers all enumeration values">,
7244   InGroup<CoveredSwitchDefault>, DefaultIgnore;
7245 def warn_not_in_enum : Warning<"case value not in enumerated type %0">,
7246   InGroup<Switch>;
7247 def warn_not_in_enum_assignment : Warning<"integer constant not in range "
7248   "of enumerated type %0">, InGroup<DiagGroup<"assign-enum">>, DefaultIgnore;
7249 def err_typecheck_statement_requires_scalar : Error<
7250   "statement requires expression of scalar type (%0 invalid)">;
7251 def err_typecheck_statement_requires_integer : Error<
7252   "statement requires expression of integer type (%0 invalid)">;
7253 def err_multiple_default_labels_defined : Error<
7254   "multiple default labels in one switch">;
7255 def err_switch_multiple_conversions : Error<
7256   "multiple conversions from switch condition type %0 to an integral or "
7257   "enumeration type">;
7258 def note_switch_conversion : Note<
7259   "conversion to %select{integral|enumeration}0 type %1">;
7260 def err_switch_explicit_conversion : Error<
7261   "switch condition type %0 requires explicit conversion to %1">;
7262 def err_switch_incomplete_class_type : Error<
7263   "switch condition has incomplete class type %0">;
7264
7265 def warn_empty_if_body : Warning<
7266   "if statement has empty body">, InGroup<EmptyBody>;
7267 def warn_empty_for_body : Warning<
7268   "for loop has empty body">, InGroup<EmptyBody>;
7269 def warn_empty_range_based_for_body : Warning<
7270   "range-based for loop has empty body">, InGroup<EmptyBody>;
7271 def warn_empty_while_body : Warning<
7272   "while loop has empty body">, InGroup<EmptyBody>;
7273 def warn_empty_switch_body : Warning<
7274   "switch statement has empty body">, InGroup<EmptyBody>;
7275 def note_empty_body_on_separate_line : Note<
7276   "put the semicolon on a separate line to silence this warning">;
7277
7278 def err_va_start_used_in_non_variadic_function : Error<
7279   "'va_start' used in function with fixed args">;
7280 def err_va_start_used_in_wrong_abi_function : Error<
7281   "'va_start' used in %select{System V|Win64}0 ABI function">;
7282 def err_ms_va_start_used_in_sysv_function : Error<
7283   "'__builtin_ms_va_start' used in System V ABI function">;
7284 def warn_second_parameter_of_va_start_not_last_named_argument : Warning<
7285   "second parameter of 'va_start' not last named argument">, InGroup<Varargs>;
7286 def warn_va_start_of_reference_type_is_undefined : Warning<
7287   "'va_start' has undefined behavior with reference types">, InGroup<Varargs>;
7288 def err_first_argument_to_va_arg_not_of_type_va_list : Error<
7289   "first argument to 'va_arg' is of type %0 and not 'va_list'">;
7290 def err_second_parameter_to_va_arg_incomplete: Error<
7291   "second argument to 'va_arg' is of incomplete type %0">;
7292 def err_second_parameter_to_va_arg_abstract: Error<
7293   "second argument to 'va_arg' is of abstract type %0">;
7294 def warn_second_parameter_to_va_arg_not_pod : Warning<
7295   "second argument to 'va_arg' is of non-POD type %0">,
7296   InGroup<NonPODVarargs>, DefaultError;
7297 def warn_second_parameter_to_va_arg_ownership_qualified : Warning<
7298   "second argument to 'va_arg' is of ARC ownership-qualified type %0">,
7299   InGroup<NonPODVarargs>, DefaultError;
7300 def warn_second_parameter_to_va_arg_never_compatible : Warning<
7301   "second argument to 'va_arg' is of promotable type %0; this va_arg has "
7302   "undefined behavior because arguments will be promoted to %1">, InGroup<Varargs>;
7303
7304 def warn_return_missing_expr : Warning<
7305   "non-void %select{function|method}1 %0 should return a value">, DefaultError,
7306   InGroup<ReturnType>;
7307 def ext_return_missing_expr : ExtWarn<
7308   "non-void %select{function|method}1 %0 should return a value">, DefaultError,
7309   InGroup<ReturnType>;
7310 def ext_return_has_expr : ExtWarn<
7311   "%select{void function|void method|constructor|destructor}1 %0 "
7312   "should not return a value">,
7313   DefaultError, InGroup<ReturnType>;
7314 def ext_return_has_void_expr : Extension<
7315   "void %select{function|method|block}1 %0 should not return void expression">;
7316 def err_return_init_list : Error<
7317   "%select{void function|void method|constructor|destructor}1 %0 "
7318   "must not return a value">;
7319 def err_ctor_dtor_returns_void : Error<
7320   "%select{constructor|destructor}1 %0 must not return void expression">;
7321 def warn_noreturn_function_has_return_expr : Warning<
7322   "function %0 declared 'noreturn' should not return">,
7323   InGroup<InvalidNoreturn>;
7324 def warn_falloff_noreturn_function : Warning<
7325   "function declared 'noreturn' should not return">,
7326   InGroup<InvalidNoreturn>;
7327 def err_noreturn_block_has_return_expr : Error<
7328   "block declared 'noreturn' should not return">;
7329 def err_noreturn_missing_on_first_decl : Error<
7330   "function declared '[[noreturn]]' after its first declaration">;
7331 def note_noreturn_missing_first_decl : Note<
7332   "declaration missing '[[noreturn]]' attribute is here">;
7333 def err_carries_dependency_missing_on_first_decl : Error<
7334   "%select{function|parameter}0 declared '[[carries_dependency]]' "
7335   "after its first declaration">;
7336 def note_carries_dependency_missing_first_decl : Note<
7337   "declaration missing '[[carries_dependency]]' attribute is here">;
7338 def err_carries_dependency_param_not_function_decl : Error<
7339   "'[[carries_dependency]]' attribute only allowed on parameter in a function "
7340   "declaration or lambda">;
7341 def err_block_on_nonlocal : Error<
7342   "__block attribute not allowed, only allowed on local variables">;
7343 def err_block_on_vm : Error<
7344   "__block attribute not allowed on declaration with a variably modified type">;
7345
7346 def err_shufflevector_non_vector : Error<
7347   "first two arguments to __builtin_shufflevector must be vectors">;
7348 def err_shufflevector_incompatible_vector : Error<
7349   "first two arguments to __builtin_shufflevector must have the same type">;
7350 def err_shufflevector_nonconstant_argument : Error<
7351   "index for __builtin_shufflevector must be a constant integer">;
7352 def err_shufflevector_argument_too_large : Error<
7353   "index for __builtin_shufflevector must be less than the total number "
7354   "of vector elements">;
7355
7356 def err_convertvector_non_vector : Error<
7357   "first argument to __builtin_convertvector must be a vector">;
7358 def err_convertvector_non_vector_type : Error<
7359   "second argument to __builtin_convertvector must be a vector type">;
7360 def err_convertvector_incompatible_vector : Error<
7361   "first two arguments to __builtin_convertvector must have the same number of elements">;
7362
7363 def err_first_argument_to_cwsc_not_call : Error<
7364   "first argument to __builtin_call_with_static_chain must be a non-member call expression">;
7365 def err_first_argument_to_cwsc_block_call : Error<
7366   "first argument to __builtin_call_with_static_chain must not be a block call">;
7367 def err_first_argument_to_cwsc_builtin_call : Error<
7368   "first argument to __builtin_call_with_static_chain must not be a builtin call">;
7369 def err_first_argument_to_cwsc_pdtor_call : Error<
7370   "first argument to __builtin_call_with_static_chain must not be a pseudo-destructor call">;
7371 def err_second_argument_to_cwsc_not_pointer : Error<
7372   "second argument to __builtin_call_with_static_chain must be of pointer type">;
7373
7374 def err_vector_incorrect_num_initializers : Error<
7375   "%select{too many|too few}0 elements in vector initialization (expected %1 elements, have %2)">;
7376 def err_altivec_empty_initializer : Error<"expected initializer">;
7377
7378 def err_invalid_neon_type_code : Error<
7379   "incompatible constant for this __builtin_neon function">; 
7380 def err_argument_invalid_range : Error<
7381   "argument should be a value from %0 to %1">;
7382 def warn_neon_vector_initializer_non_portable : Warning<
7383   "vector initializers are not compatible with NEON intrinsics in big endian "
7384   "mode">, InGroup<DiagGroup<"nonportable-vector-initialization">>;
7385 def note_neon_vector_initializer_non_portable : Note<
7386   "consider using vld1_%0%1() to initialize a vector from memory, or "
7387   "vcreate_%0%1() to initialize from an integer constant">;
7388 def note_neon_vector_initializer_non_portable_q : Note<
7389   "consider using vld1q_%0%1() to initialize a vector from memory, or "
7390   "vcombine_%0%1(vcreate_%0%1(), vcreate_%0%1()) to initialize from integer "
7391   "constants">;
7392 def err_systemz_invalid_tabort_code : Error<
7393   "invalid transaction abort code">;
7394 def err_64_bit_builtin_32_bit_tgt : Error<
7395   "this builtin is only available on 64-bit targets">;
7396 def err_ppc_builtin_only_on_pwr7 : Error<
7397   "this builtin is only valid on POWER7 or later CPUs">;
7398 def err_x86_builtin_32_bit_tgt : Error<
7399   "this builtin is only available on x86-64 targets">;
7400
7401 def err_builtin_longjmp_unsupported : Error<
7402   "__builtin_longjmp is not supported for the current target">;
7403 def err_builtin_setjmp_unsupported : Error<
7404   "__builtin_setjmp is not supported for the current target">;
7405
7406 def err_builtin_longjmp_invalid_val : Error<
7407   "argument to __builtin_longjmp must be a constant 1">;
7408 def err_builtin_requires_language : Error<"'%0' is only available in %1">;
7409
7410 def err_constant_integer_arg_type : Error<
7411   "argument to %0 must be a constant integer">;
7412
7413 def ext_mixed_decls_code : Extension<
7414   "ISO C90 forbids mixing declarations and code">,
7415   InGroup<DiagGroup<"declaration-after-statement">>;
7416   
7417 def err_non_local_variable_decl_in_for : Error<
7418   "declaration of non-local variable in 'for' loop">;
7419 def err_non_variable_decl_in_for : Error<
7420   "non-variable declaration in 'for' loop">;
7421 def err_toomany_element_decls : Error<
7422   "only one element declaration is allowed">;
7423 def err_selector_element_not_lvalue : Error<
7424   "selector element is not a valid lvalue">;
7425 def err_selector_element_type : Error<
7426   "selector element type %0 is not a valid object">;
7427 def err_selector_element_const_type : Error<
7428   "selector element of type %0 cannot be a constant l-value expression">;
7429 def err_collection_expr_type : Error<
7430   "the type %0 is not a pointer to a fast-enumerable object">;
7431 def warn_collection_expr_type : Warning<
7432   "collection expression type %0 may not respond to %1">;
7433
7434 def err_invalid_conversion_between_ext_vectors : Error<
7435   "invalid conversion between ext-vector type %0 and %1">;
7436
7437 def warn_duplicate_attribute_exact : Warning<
7438   "attribute %0 is already applied">, InGroup<IgnoredAttributes>;
7439
7440 def warn_duplicate_attribute : Warning<
7441   "attribute %0 is already applied with different parameters">,
7442   InGroup<IgnoredAttributes>;
7443
7444 def warn_sync_fetch_and_nand_semantics_change : Warning<
7445   "the semantics of this intrinsic changed with GCC "
7446   "version 4.4 - the newer semantics are provided here">,
7447   InGroup<DiagGroup<"sync-fetch-and-nand-semantics-changed">>;
7448
7449 // Type
7450 def ext_invalid_sign_spec : Extension<"'%0' cannot be signed or unsigned">;
7451 def warn_receiver_forward_class : Warning<
7452     "receiver %0 is a forward class and corresponding @interface may not exist">,
7453     InGroup<ForwardClassReceiver>;
7454 def note_method_sent_forward_class : Note<"method %0 is used for the forward class">;
7455 def ext_missing_declspec : ExtWarn<
7456   "declaration specifier missing, defaulting to 'int'">;
7457 def ext_missing_type_specifier : ExtWarn<
7458   "type specifier missing, defaults to 'int'">,
7459   InGroup<ImplicitInt>;
7460 def err_decimal_unsupported : Error<
7461   "GNU decimal type extension not supported">;
7462 def err_missing_type_specifier : Error<
7463   "C++ requires a type specifier for all declarations">;
7464 def err_objc_array_of_interfaces : Error<
7465   "array of interface %0 is invalid (probably should be an array of pointers)">;
7466 def ext_c99_array_usage : Extension<
7467   "%select{qualifier in |static |}0array size %select{||'[*] '}0is a C99 "
7468   "feature">, InGroup<C99>;
7469 def err_c99_array_usage_cxx : Error<
7470   "%select{qualifier in |static |}0array size %select{||'[*] '}0is a C99 "
7471   "feature, not permitted in C++">;
7472  def err_type_requires_extension : Error<
7473   "use of type %0 requires %1 extension to be enabled">;
7474 def err_int128_unsupported : Error<
7475   "__int128 is not supported on this target">;
7476 def err_nsconsumed_attribute_mismatch : Error<
7477   "overriding method has mismatched ns_consumed attribute on its"
7478   " parameter">;
7479 def err_nsreturns_retained_attribute_mismatch : Error<
7480   "overriding method has mismatched ns_returns_%select{not_retained|retained}0"
7481   " attributes">;
7482   
7483 def note_getter_unavailable : Note<
7484   "or because setter is declared here, but no getter method %0 is found">;
7485 def err_invalid_protocol_qualifiers : Error<
7486   "invalid protocol qualifiers on non-ObjC type">;
7487 def warn_ivar_use_hidden : Warning<
7488   "local declaration of %0 hides instance variable">,
7489    InGroup<DiagGroup<"shadow-ivar">>;
7490 def warn_direct_initialize_call : Warning<
7491   "explicit call to +initialize results in duplicate call to +initialize">,
7492    InGroup<ExplicitInitializeCall>;
7493 def warn_direct_super_initialize_call : Warning<
7494   "explicit call to [super initialize] should only be in implementation "
7495   "of +initialize">,
7496    InGroup<ExplicitInitializeCall>;
7497 def error_ivar_use_in_class_method : Error<
7498   "instance variable %0 accessed in class method">;
7499 def error_implicit_ivar_access : Error<
7500   "instance variable %0 cannot be accessed because 'self' has been redeclared">;
7501 def error_private_ivar_access : Error<"instance variable %0 is private">,
7502   AccessControl;
7503 def error_protected_ivar_access : Error<"instance variable %0 is protected">,
7504   AccessControl;
7505 def warn_maynot_respond : Warning<"%0 may not respond to %1">;
7506 def ext_typecheck_base_super : Warning<
7507   "method parameter type "
7508   "%diff{$ does not match super class method parameter type $|"
7509   "does not match super class method parameter type}0,1">,
7510    InGroup<SuperSubClassMismatch>, DefaultIgnore;
7511 def warn_missing_method_return_type : Warning<
7512   "method has no return type specified; defaults to 'id'">,
7513   InGroup<MissingMethodReturnType>, DefaultIgnore;
7514 def warn_direct_ivar_access : Warning<"instance variable %0 is being "
7515   "directly accessed">, InGroup<DiagGroup<"direct-ivar-access">>, DefaultIgnore;
7516
7517 // Spell-checking diagnostics
7518 def err_unknown_typename : Error<
7519   "unknown type name %0">;
7520 def err_unknown_type_or_class_name_suggest : Error<
7521   "unknown %select{type|class}1 name %0; did you mean %2?">;
7522 def err_unknown_typename_suggest : Error<
7523   "unknown type name %0; did you mean %1?">;
7524 def err_unknown_nested_typename_suggest : Error<
7525   "no type named %0 in %1; did you mean %select{|simply }2%3?">;
7526 def err_no_member_suggest : Error<"no member named %0 in %1; did you mean %select{|simply }2%3?">;
7527 def err_undeclared_use_suggest : Error<
7528   "use of undeclared %0; did you mean %1?">;
7529 def err_undeclared_var_use_suggest : Error<
7530   "use of undeclared identifier %0; did you mean %1?">;
7531 def err_no_template_suggest : Error<"no template named %0; did you mean %1?">;
7532 def err_no_member_template_suggest : Error<
7533   "no template named %0 in %1; did you mean %select{|simply }2%3?">;
7534 def err_mem_init_not_member_or_class_suggest : Error<
7535   "initializer %0 does not name a non-static data member or base "
7536   "class; did you mean the %select{base class|member}1 %2?">;
7537 def err_field_designator_unknown_suggest : Error<
7538   "field designator %0 does not refer to any field in type %1; did you mean "
7539   "%2?">;
7540 def err_typecheck_member_reference_ivar_suggest : Error<
7541   "%0 does not have a member named %1; did you mean %2?">;
7542 def err_property_not_found_suggest : Error<
7543   "property %0 not found on object of type %1; did you mean %2?">;
7544 def err_ivar_access_using_property_syntax_suggest : Error<
7545   "property %0 not found on object of type %1; did you mean to access instance variable %2?">;
7546 def warn_property_access_suggest : Warning<
7547 "property %0 not found on object of type %1; did you mean to access property %2?">,
7548 InGroup<PropertyAccessDotSyntax>;
7549 def err_property_found_suggest : Error<
7550   "property %0 found on object of type %1; did you mean to access "
7551   "it with the \".\" operator?">;
7552 def err_undef_interface_suggest : Error<
7553   "cannot find interface declaration for %0; did you mean %1?">;
7554 def warn_undef_interface_suggest : Warning<
7555   "cannot find interface declaration for %0; did you mean %1?">;
7556 def err_undef_superclass_suggest : Error<
7557   "cannot find interface declaration for %0, superclass of %1; did you mean "
7558   "%2?">;
7559 def err_undeclared_protocol_suggest : Error<
7560   "cannot find protocol declaration for %0; did you mean %1?">;
7561 def note_base_class_specified_here : Note<
7562   "base class %0 specified here">;
7563 def err_using_directive_suggest : Error<
7564   "no namespace named %0; did you mean %1?">;
7565 def err_using_directive_member_suggest : Error<
7566   "no namespace named %0 in %1; did you mean %select{|simply }2%3?">;
7567 def note_namespace_defined_here : Note<"namespace %0 defined here">;
7568 def err_sizeof_pack_no_pack_name_suggest : Error<
7569   "%0 does not refer to the name of a parameter pack; did you mean %1?">;
7570 def note_parameter_pack_here : Note<"parameter pack %0 declared here">;
7571
7572 def err_uncasted_use_of_unknown_any : Error<
7573   "%0 has unknown type; cast it to its declared type to use it">;
7574 def err_uncasted_call_of_unknown_any : Error<
7575   "%0 has unknown return type; cast the call to its declared return type">;
7576 def err_uncasted_send_to_unknown_any_method : Error<
7577   "no known method %select{%objcinstance1|%objcclass1}0; cast the "
7578   "message send to the method's return type">;
7579 def err_unsupported_unknown_any_decl : Error<
7580   "%0 has unknown type, which is not supported for this kind of declaration">;
7581 def err_unsupported_unknown_any_expr : Error<
7582   "unsupported expression with unknown type">;
7583 def err_unsupported_unknown_any_call : Error<
7584   "call to unsupported expression with unknown type">;
7585 def err_unknown_any_addrof : Error<
7586   "the address of a declaration with unknown type "
7587   "can only be cast to a pointer type">;
7588 def err_unknown_any_var_function_type : Error<
7589   "variable %0 with unknown type cannot be given a function type">;
7590 def err_unknown_any_function : Error<
7591   "function %0 with unknown type must be given a function type">;
7592
7593 def err_filter_expression_integral : Error<
7594   "filter expression type should be an integral value not %0">;
7595
7596 def err_non_asm_stmt_in_naked_function : Error<
7597   "non-ASM statement in naked function is not supported">;
7598 def err_asm_naked_this_ref : Error<
7599   "'this' pointer references not allowed in naked functions">;
7600 def err_asm_naked_parm_ref : Error<
7601   "parameter references not allowed in naked functions">;
7602
7603 def ext_deprecated_attr_is_a_cxx14_extension : ExtWarn<
7604   "use of the 'deprecated' attribute is a C++14 extension">, InGroup<CXX14>;
7605
7606 // OpenCL warnings and errors.
7607 def err_invalid_astype_of_different_size : Error<
7608   "invalid reinterpretation: sizes of %0 and %1 must match">;
7609 def err_static_kernel : Error<
7610   "kernel functions cannot be declared static">;
7611 def err_opencl_ptrptr_kernel_param : Error<
7612   "kernel parameter cannot be declared as a pointer to a pointer">;
7613 def err_opencl_private_ptr_kernel_param : Error<
7614   "kernel parameter cannot be declared as a pointer to the __private address space">;
7615 def err_opencl_non_kernel_variable : Error<
7616   "non-kernel function variable cannot be declared in %0 address space">;
7617 def err_static_function_scope : Error<
7618   "variables in function scope cannot be declared static">;
7619 def err_opencl_bitfields : Error<
7620   "bitfields are not supported in OpenCL">;
7621 def err_opencl_vla : Error<
7622   "variable length arrays are not supported in OpenCL">;
7623 def err_bad_kernel_param_type : Error<
7624   "%0 cannot be used as the type of a kernel parameter">;
7625 def err_record_with_pointers_kernel_param : Error<
7626   "%select{struct|union}0 kernel parameters may not contain pointers">;
7627 def note_within_field_of_type : Note<
7628   "within field of type %0 declared here">;
7629 def note_illegal_field_declared_here : Note<
7630   "field of illegal %select{type|pointer type}0 %1 declared here">;
7631 def err_event_t_global_var : Error<
7632   "the event_t type cannot be used to declare a program scope variable">;
7633 def err_event_t_struct_field : Error<
7634   "the event_t type cannot be used to declare a structure or union field">;
7635 def err_event_t_addr_space_qual : Error<
7636   "the event_t type can only be used with __private address space qualifier">;
7637 def err_expected_kernel_void_return_type : Error<
7638   "kernel must have void return type">;
7639 def err_sampler_argument_required : Error<
7640   "sampler_t variable required - got %0">;
7641 def err_wrong_sampler_addressspace: Error<
7642   "sampler type cannot be used with the __local and __global address space qualifiers">;
7643 def err_opencl_global_invalid_addr_space : Error<
7644   "program scope variable must reside in %0 address space">;
7645 def err_missing_actual_pipe_type : Error<
7646   "missing actual type specifier for pipe">;
7647 def err_reference_pipe_type : Error <
7648   "pipes packet types cannot be of reference type">;
7649 def err_opencl_no_main : Error<"%select{function|kernel}0 cannot be called 'main'">;
7650 def err_opencl_kernel_attr :
7651   Error<"attribute %0 can only be applied to a kernel function">;
7652 def err_opencl_return_value_with_address_space : Error<
7653   "return value cannot be qualified with address space">;
7654 def err_opencl_constant_no_init : Error<
7655   "variable in constant address space must be initialized">;
7656 def err_atomic_init_constant : Error<
7657   "atomic variable can only be assigned to a compile time constant"
7658   " in the declaration statement in the program scope">;
7659 def err_opencl_implicit_vector_conversion : Error<
7660   "implicit conversions between vector types (%0 and %1) are not permitted">;
7661
7662 // OpenCL Section 6.8.g
7663 def err_opencl_unknown_type_specifier : Error<
7664   "OpenCL does not support the '%0' %select{type qualifier|storage class specifier}1">;
7665
7666 } // end of sema category
7667
7668 let CategoryName = "OpenMP Issue" in {
7669 // OpenMP support.
7670 def err_omp_expected_var_arg : Error<
7671   "%0 is not a global variable, static local variable or static data member">;
7672 def err_omp_expected_var_arg_suggest : Error<
7673   "%0 is not a global variable, static local variable or static data member; "
7674   "did you mean %1">;
7675 def err_omp_global_var_arg : Error<
7676   "arguments of '#pragma omp %0' must have %select{global storage|static storage duration}1">;
7677 def err_omp_ref_type_arg : Error<
7678   "arguments of '#pragma omp %0' cannot be of reference type %1">;
7679 def err_omp_var_scope : Error<
7680   "'#pragma omp %0' must appear in the scope of the %q1 variable declaration">;
7681 def err_omp_var_used : Error<
7682   "'#pragma omp %0' must precede all references to variable %q1">;
7683 def err_omp_var_thread_local : Error<
7684   "variable %0 cannot be threadprivate because it is %select{thread-local|a global named register variable}1">;
7685 def err_omp_private_incomplete_type : Error<
7686   "a private variable with incomplete type %0">;
7687 def err_omp_firstprivate_incomplete_type : Error<
7688   "a firstprivate variable with incomplete type %0">;
7689 def err_omp_lastprivate_incomplete_type : Error<
7690   "a lastprivate variable with incomplete type %0">;
7691 def err_omp_reduction_incomplete_type : Error<
7692   "a reduction list item with incomplete type %0">;
7693 def err_omp_unexpected_clause_value : Error<
7694   "expected %0 in OpenMP clause '%1'">;
7695 def err_omp_expected_var_name : Error<
7696   "expected variable name">;
7697 def err_omp_expected_var_name_or_array_item : Error<
7698   "expected variable name, array element or array section">;
7699 def note_omp_task_predetermined_firstprivate_here : Note<
7700   "predetermined as a firstprivate in a task construct here">;
7701 def err_omp_threadprivate_incomplete_type : Error<
7702   "threadprivate variable with incomplete type %0">;
7703 def err_omp_no_dsa_for_variable : Error<
7704   "variable %0 must have explicitly specified data sharing attributes">;
7705 def err_omp_wrong_dsa : Error<
7706   "%0 variable cannot be %1">;
7707 def err_omp_variably_modified_type_not_supported : Error<
7708   "arguments of OpenMP clause '%0' in '#pragma omp %2' directive cannot be of variably-modified type %1">;
7709 def note_omp_explicit_dsa : Note<
7710   "defined as %0">;
7711 def note_omp_predetermined_dsa : Note<
7712   "%select{static data member is predetermined as shared|"
7713   "variable with static storage duration is predetermined as shared|"
7714   "loop iteration variable is predetermined as private|"
7715   "loop iteration variable is predetermined as linear|"
7716   "loop iteration variable is predetermined as lastprivate|"
7717   "constant variable is predetermined as shared|"
7718   "global variable is predetermined as shared|"
7719   "non-shared variable in a task construct is predetermined as firstprivate|"
7720   "variable with automatic storage duration is predetermined as private}0"
7721   "%select{|; perhaps you forget to enclose 'omp %2' directive into a parallel or another task region?}1">;
7722 def note_omp_implicit_dsa : Note<
7723   "implicitly determined as %0">;
7724 def err_omp_loop_var_dsa : Error<
7725   "loop iteration variable in the associated loop of 'omp %1' directive may not be %0, predetermined as %2">;
7726 def err_omp_not_for : Error<
7727   "%select{statement after '#pragma omp %1' must be a for loop|"
7728   "expected %2 for loops after '#pragma omp %1'%select{|, but found only %4}3}0">;
7729 def note_omp_collapse_ordered_expr : Note<
7730   "as specified in %select{'collapse'|'ordered'|'collapse' and 'ordered'}0 clause%select{||s}0">;
7731 def err_omp_negative_expression_in_clause : Error<
7732   "argument to '%0' clause must be a %select{non-negative|strictly positive}1 integer value">;
7733 def err_omp_not_integral : Error<
7734   "expression must have integral or unscoped enumeration "
7735   "type, not %0">;
7736 def err_omp_incomplete_type : Error<
7737   "expression has incomplete class type %0">;
7738 def err_omp_explicit_conversion : Error<
7739   "expression requires explicit conversion from %0 to %1">;
7740 def note_omp_conversion_here : Note<
7741   "conversion to %select{integral|enumeration}0 type %1 declared here">;
7742 def err_omp_ambiguous_conversion : Error<
7743   "ambiguous conversion from type %0 to an integral or unscoped "
7744   "enumeration type">;
7745 def err_omp_required_access : Error<
7746   "%0 variable must be %1">;
7747 def err_omp_const_variable : Error<
7748   "const-qualified variable cannot be %0">;
7749 def err_omp_const_reduction_list_item : Error<
7750   "const-qualified list item cannot be reduction">;
7751 def err_omp_linear_incomplete_type : Error<
7752   "a linear variable with incomplete type %0">;
7753 def err_omp_linear_expected_int_or_ptr : Error<
7754   "argument of a linear clause should be of integral or pointer "
7755   "type, not %0">;
7756 def warn_omp_linear_step_zero : Warning<
7757   "zero linear step (%0 %select{|and other variables in clause }1should probably be const)">,
7758   InGroup<OpenMPClauses>;
7759 def warn_omp_alignment_not_power_of_two : Warning<
7760   "aligned clause will be ignored because the requested alignment is not a power of 2">,
7761   InGroup<OpenMPClauses>;
7762 def err_omp_aligned_expected_array_or_ptr : Error<
7763   "argument of aligned clause should be array"
7764   "%select{ or pointer|, pointer, reference to array or reference to pointer}1"
7765   ", not %0">;
7766 def err_omp_aligned_twice : Error<
7767   "a variable cannot appear in more than one aligned clause">;
7768 def err_omp_local_var_in_threadprivate_init : Error<
7769   "variable with local storage in initial value of threadprivate variable">;
7770 def err_omp_loop_not_canonical_init : Error<
7771   "initialization clause of OpenMP for loop is not in canonical form "
7772   "('var = init' or 'T var = init')">;
7773 def ext_omp_loop_not_canonical_init : ExtWarn<
7774   "initialization clause of OpenMP for loop is not in canonical form "
7775   "('var = init' or 'T var = init')">, InGroup<OpenMPLoopForm>;
7776 def err_omp_loop_not_canonical_cond : Error<
7777   "condition of OpenMP for loop must be a relational comparison "
7778   "('<', '<=', '>', or '>=') of loop variable %0">;
7779 def err_omp_loop_not_canonical_incr : Error<
7780   "increment clause of OpenMP for loop must perform simple addition "
7781   "or subtraction on loop variable %0">;
7782 def err_omp_loop_variable_type : Error<
7783   "variable must be of integer or %select{pointer|random access iterator}0 type">;
7784 def err_omp_loop_incr_not_compatible : Error<
7785   "increment expression must cause %0 to %select{decrease|increase}1 "
7786   "on each iteration of OpenMP for loop">;
7787 def note_omp_loop_cond_requres_compatible_incr : Note<
7788   "loop step is expected to be %select{negative|positive}0 due to this condition">;
7789 def err_omp_loop_diff_cxx : Error<
7790   "could not calculate number of iterations calling 'operator-' with "
7791   "upper and lower loop bounds">;
7792 def err_omp_loop_cannot_use_stmt : Error<
7793   "'%0' statement cannot be used in OpenMP for loop">;
7794 def err_omp_simd_region_cannot_use_stmt : Error<
7795   "'%0' statement cannot be used in OpenMP simd region">;
7796 def warn_omp_loop_64_bit_var : Warning<
7797   "OpenMP loop iteration variable cannot have more than 64 bits size and will be narrowed">,
7798   InGroup<OpenMPLoopForm>;
7799 def err_omp_unknown_reduction_identifier : Error<
7800   "incorrect reduction identifier, expected one of '+', '-', '*', '&', '|', '^', '&&', '||', 'min' or 'max'">;
7801 def err_omp_reduction_type_array : Error<
7802   "a reduction list item with array type %0">;
7803 def err_omp_reduction_ref_type_arg : Error<
7804   "argument of OpenMP clause 'reduction' must reference the same object in all threads">;
7805 def err_omp_clause_not_arithmetic_type_arg : Error<
7806   "arguments of OpenMP clause 'reduction' for 'min' or 'max' must be of %select{scalar|arithmetic}0 type">;
7807 def err_omp_clause_floating_type_arg : Error<
7808   "arguments of OpenMP clause 'reduction' with bitwise operators cannot be of floating type">;
7809 def err_omp_once_referenced : Error<
7810   "variable can appear only once in OpenMP '%0' clause">;
7811 def note_omp_referenced : Note<
7812   "previously referenced here">;
7813 def err_omp_reduction_in_task : Error<
7814   "reduction variables may not be accessed in an explicit task">;
7815 def err_omp_reduction_id_not_compatible : Error<
7816   "list item of type %0 is not valid for specified reduction operation: unable to provide default initialization value">;
7817 def err_omp_prohibited_region : Error<
7818   "region cannot be%select{| closely}0 nested inside '%1' region"
7819   "%select{|; perhaps you forget to enclose 'omp %3' directive into a parallel region?|"
7820   "; perhaps you forget to enclose 'omp %3' directive into a for or a parallel for region with 'ordered' clause?|"
7821   "; perhaps you forget to enclose 'omp %3' directive into a target region?|"
7822   "; perhaps you forget to enclose 'omp %3' directive into a teams region?}2">;
7823 def err_omp_prohibited_region_simd : Error<
7824   "OpenMP constructs may not be nested inside a simd region">;
7825 def err_omp_prohibited_region_atomic : Error<
7826   "OpenMP constructs may not be nested inside an atomic region">;
7827 def err_omp_prohibited_region_critical_same_name : Error<
7828   "cannot nest 'critical' regions having the same name %0">;
7829 def note_omp_previous_critical_region : Note<
7830   "previous 'critical' region starts here">;
7831 def err_omp_sections_not_compound_stmt : Error<
7832   "the statement for '#pragma omp sections' must be a compound statement">;
7833 def err_omp_parallel_sections_not_compound_stmt : Error<
7834   "the statement for '#pragma omp parallel sections' must be a compound statement">;
7835 def err_omp_orphaned_section_directive : Error<
7836   "%select{orphaned 'omp section' directives are prohibited, it|'omp section' directive}0"
7837   " must be closely nested to a sections region%select{|, not a %1 region}0">;
7838 def err_omp_sections_substmt_not_section : Error<
7839   "statement in 'omp sections' directive must be enclosed into a section region">;
7840 def err_omp_parallel_sections_substmt_not_section : Error<
7841   "statement in 'omp parallel sections' directive must be enclosed into a section region">;
7842 def err_omp_parallel_reduction_in_task_firstprivate : Error<
7843   "argument of a reduction clause of a %0 construct must not appear in a firstprivate clause on a task construct">;
7844 def err_omp_atomic_read_not_expression_statement : Error<
7845   "the statement for 'atomic read' must be an expression statement of form 'v = x;',"
7846   " where v and x are both lvalue expressions with scalar type">;
7847 def note_omp_atomic_read_write: Note<
7848   "%select{expected an expression statement|expected built-in assignment operator|expected expression of scalar type|expected lvalue expression}0">;
7849 def err_omp_atomic_write_not_expression_statement : Error<
7850   "the statement for 'atomic write' must be an expression statement of form 'x = expr;',"
7851   " where x is a lvalue expression with scalar type">;
7852 def err_omp_atomic_update_not_expression_statement : Error<
7853   "the statement for 'atomic update' must be an expression statement of form '++x;', '--x;', 'x++;', 'x--;', 'x binop= expr;', 'x = x binop expr' or 'x = expr binop x',"
7854   " where x is an l-value expression with scalar type">;
7855 def err_omp_atomic_not_expression_statement : Error<
7856   "the statement for 'atomic' must be an expression statement of form '++x;', '--x;', 'x++;', 'x--;', 'x binop= expr;', 'x = x binop expr' or 'x = expr binop x',"
7857   " where x is an l-value expression with scalar type">;
7858 def note_omp_atomic_update: Note<
7859   "%select{expected an expression statement|expected built-in binary or unary operator|expected unary decrement/increment operation|"
7860   "expected expression of scalar type|expected assignment expression|expected built-in binary operator|"
7861   "expected one of '+', '*', '-', '/', '&', '^', '%|', '<<', or '>>' built-in operations|expected in right hand side of expression}0">;
7862 def err_omp_atomic_capture_not_expression_statement : Error<
7863   "the statement for 'atomic capture' must be an expression statement of form 'v = ++x;', 'v = --x;', 'v = x++;', 'v = x--;', 'v = x binop= expr;', 'v = x = x binop expr' or 'v = x = expr binop x',"
7864   " where x and v are both l-value expressions with scalar type">;
7865 def err_omp_atomic_capture_not_compound_statement : Error<
7866   "the statement for 'atomic capture' must be a compound statement of form '{v = x; x binop= expr;}', '{x binop= expr; v = x;}',"
7867   " '{v = x; x = x binop expr;}', '{v = x; x = expr binop x;}', '{x = x binop expr; v = x;}', '{x = expr binop x; v = x;}' or '{v = x; x = expr;}',"
7868   " '{v = x; x++;}', '{v = x; ++x;}', '{++x; v = x;}', '{x++; v = x;}', '{v = x; x--;}', '{v = x; --x;}', '{--x; v = x;}', '{x--; v = x;}'"
7869   " where x is an l-value expression with scalar type">;
7870 def note_omp_atomic_capture: Note<
7871   "%select{expected assignment expression|expected compound statement|expected exactly two expression statements|expected in right hand side of the first expression}0">;
7872 def err_omp_atomic_several_clauses : Error<
7873   "directive '#pragma omp atomic' cannot contain more than one 'read', 'write', 'update' or 'capture' clause">;
7874 def note_omp_atomic_previous_clause : Note<
7875   "'%0' clause used here">;
7876 def err_omp_target_contains_not_only_teams : Error<
7877   "target construct with nested teams region contains statements outside of the teams construct">;
7878 def note_omp_nested_teams_construct_here : Note<
7879   "nested teams construct here">;
7880 def note_omp_nested_statement_here : Note<
7881   "%select{statement|directive}0 outside teams construct here">;
7882 def err_omp_single_copyprivate_with_nowait : Error<
7883   "the 'copyprivate' clause must not be used with the 'nowait' clause">;
7884 def note_omp_nowait_clause_here : Note<
7885   "'nowait' clause is here">;
7886 def err_omp_wrong_cancel_region : Error<
7887   "one of 'for', 'parallel', 'sections' or 'taskgroup' is expected">;
7888 def err_omp_parent_cancel_region_nowait : Error<
7889   "parent region for 'omp %select{cancellation point/cancel}0' construct cannot be nowait">;
7890 def err_omp_parent_cancel_region_ordered : Error<
7891   "parent region for 'omp %select{cancellation point/cancel}0' construct cannot be ordered">;
7892 def err_omp_array_section_use : Error<"OpenMP array section is not allowed here">;
7893 def err_omp_typecheck_section_value : Error<
7894   "subscripted value is not an array or pointer">;
7895 def err_omp_typecheck_section_not_integer : Error<
7896   "array section %select{lower bound|length}0 is not an integer">;
7897 def err_omp_section_function_type : Error<
7898   "section of pointer to function type %0">;
7899 def warn_omp_section_is_char : Warning<"array section %select{lower bound|length}0 is of type 'char'">,
7900   InGroup<CharSubscript>, DefaultIgnore;
7901 def err_omp_section_incomplete_type : Error<
7902   "section of pointer to incomplete type %0">;
7903 def err_omp_section_negative : Error<
7904   "section %select{lower bound|length}0 is evaluated to a negative value %1">;
7905 def err_omp_section_length_undefined : Error<
7906   "section length is unspecified and cannot be inferred because subscripted value is %select{not an array|an array of unknown bound}0">;
7907 def err_omp_wrong_linear_modifier : Error<
7908   "expected %select{'val' modifier|one of 'ref', val' or 'uval' modifiers}0">;
7909 def err_omp_wrong_linear_modifier_non_reference : Error<
7910   "variable of non-reference type %0 can be used only with 'val' modifier, but used with '%1'">;
7911 def err_omp_wrong_simdlen_safelen_values : Error<
7912   "the value of 'simdlen' parameter must be less than or equal to the value of the 'safelen' parameter">;
7913 def err_omp_wrong_if_directive_name_modifier : Error<
7914   "directive name modifier '%0' is not allowed for '#pragma omp %1'">;
7915 def err_omp_no_more_if_clause : Error<
7916   "no more 'if' clause is allowed">;
7917 def err_omp_unnamed_if_clause : Error<
7918   "expected %select{|one of}0 %1 directive name modifier%select{|s}0">;
7919 def note_omp_previous_named_if_clause : Note<
7920   "previous clause with directive name modifier specified here">;
7921 def err_omp_ordered_directive_with_param : Error<
7922   "'ordered' directive %select{without any clauses|with 'threads' clause}0 cannot be closely nested inside ordered region with specified parameter">;
7923 def err_omp_ordered_directive_without_param : Error<
7924   "'ordered' directive with 'depend' clause cannot be closely nested inside ordered region without specified parameter">;
7925 def note_omp_ordered_param : Note<
7926   "'ordered' clause with specified parameter">;
7927 def err_omp_expected_base_var_name : Error<
7928   "expected variable name as a base of the array %select{subscript|section}0">;
7929 def err_omp_map_shared_storage : Error<
7930   "variable already marked as mapped in current construct">;
7931 def err_omp_not_mappable_type : Error<
7932   "type %0 is not mappable to target">;
7933 def note_omp_polymorphic_in_target : Note<
7934   "mappable type cannot be polymorphic">;
7935 def note_omp_static_member_in_target : Note<
7936   "mappable type cannot contain static members">;
7937 def err_omp_threadprivate_in_map : Error<
7938   "threadprivate variables are not allowed in map clause">;
7939 def err_omp_wrong_ordered_loop_count : Error<
7940   "the parameter of the 'ordered' clause must be greater than or equal to the parameter of the 'collapse' clause">;
7941 def note_collapse_loop_count : Note<
7942   "parameter of the 'collapse' clause">;
7943 def err_omp_grainsize_num_tasks_mutually_exclusive : Error<
7944   "'%0' and '%1' clause are mutually exclusive and may not appear on the same directive">;
7945 def note_omp_previous_grainsize_num_tasks : Note<
7946   "'%0' clause is specified here">;
7947 def err_omp_hint_clause_no_name : Error<
7948   "the name of the construct must be specified in presence of 'hint' clause">;
7949 def err_omp_critical_with_hint : Error<
7950   "constructs with the same name must have a 'hint' clause with the same value">;
7951 def note_omp_critical_hint_here : Note<
7952   "%select{|previous }0'hint' clause with value '%1'">;
7953 def note_omp_critical_no_hint : Note<
7954   "%select{|previous }0directive with no 'hint' clause specified">;
7955 def err_omp_firstprivate_distribute_private_teams : Error<
7956   "private variable in '#pragma omp teams' cannot be firstprivate in '#pragma omp distribute'">;
7957 def err_omp_firstprivate_and_lastprivate_in_distribute : Error<
7958   "lastprivate variable cannot be firstprivate in '#pragma omp distribute'">;
7959 def err_omp_firstprivate_distribute_in_teams_reduction : Error<
7960   "reduction variable in '#pragma omp teams' cannot be firstprivate in '#pragma omp distribute'">;
7961 def err_omp_depend_clause_thread_simd : Error<
7962   "'depend' clauses cannot be mixed with '%0' clause">;
7963 def err_omp_depend_sink_wrong_expr : Error<
7964   "expected expression form x[+-d], where x is the loop iteration variable and d is a constant non-negative integer">;
7965 def err_omp_depend_sink_expected_loop_iteration : Error<
7966   "expected %0 loop iteration variable">;
7967 def err_omp_depend_sink_unexpected_expr : Error<
7968   "unexpected expression: number of expressions is larger than the number of associated loops">;
7969 def err_omp_depend_sink_expected_plus_minus : Error<
7970   "expected '+' or '-' operation">;
7971 def err_omp_depend_sink_source_not_allowed : Error<
7972   "'depend(%select{source|sink:vec}0)' clause%select{|s}0 cannot be mixed with 'depend(%select{sink:vec|source}0)' clause%select{s|}0">;
7973 def err_omp_linear_ordered : Error<
7974   "'linear' clause cannot be specified along with 'ordered' clause with a parameter">;
7975 def err_omp_unexpected_schedule_modifier : Error<
7976   "modifier '%0' cannot be used along with modifier '%1'">;
7977 def err_omp_schedule_nonmonotonic_static : Error<
7978   "'nonmonotonic' modifier can only be specified with 'dynamic' or 'guided' schedule kind">;
7979 def err_omp_schedule_nonmonotonic_ordered : Error<
7980   "'schedule' clause with 'nonmonotonic' modifier cannot be specified if an 'ordered' clause is specified">;
7981 def err_omp_ordered_simd : Error<
7982   "'ordered' clause with a parameter can not be specified in '#pragma omp %0' directive">;
7983 } // end of OpenMP category
7984
7985 let CategoryName = "Related Result Type Issue" in {
7986 // Objective-C related result type compatibility
7987 def warn_related_result_type_compatibility_class : Warning<
7988   "method is expected to return an instance of its class type "
7989   "%diff{$, but is declared to return $|"
7990   ", but is declared to return different type}0,1">;
7991 def warn_related_result_type_compatibility_protocol : Warning<
7992   "protocol method is expected to return an instance of the implementing "
7993   "class, but is declared to return %0">;
7994 def note_related_result_type_family : Note<
7995   "%select{overridden|current}0 method is part of the '%select{|alloc|copy|init|"
7996   "mutableCopy|new|autorelease|dealloc|finalize|release|retain|retainCount|"
7997   "self}1' method family%select{| and is expected to return an instance of its "
7998   "class type}0">;
7999 def note_related_result_type_overridden : Note<
8000   "overridden method returns an instance of its class type">;
8001 def note_related_result_type_inferred : Note<
8002   "%select{class|instance}0 method %1 is assumed to return an instance of "
8003   "its receiver type (%2)">;
8004 def note_related_result_type_explicit : Note<
8005   "%select{overridden|current}0 method is explicitly declared 'instancetype'"
8006   "%select{| and is expected to return an instance of its class type}0">;
8007
8008 }
8009
8010 let CategoryName = "Modules Issue" in {
8011 def err_module_private_specialization : Error<
8012   "%select{template|partial|member}0 specialization cannot be "
8013   "declared __module_private__">;
8014 def err_module_private_local : Error<
8015   "%select{local variable|parameter|typedef}0 %1 cannot be declared "
8016   "__module_private__">;
8017 def err_module_private_local_class : Error<
8018   "local %select{struct|interface|union|class|enum}0 cannot be declared "
8019   "__module_private__">;
8020 def err_module_unimported_use : Error<
8021   "%select{declaration|definition|default argument}0 of %1 must be imported "
8022   "from module '%2' before it is required">;
8023 def err_module_unimported_use_multiple : Error<
8024   "%select{declaration|definition|default argument}0 of %1 must be imported "
8025   "from one of the following modules before it is required:%2">;
8026 def ext_module_import_in_extern_c : ExtWarn<
8027   "import of C++ module '%0' appears within extern \"C\" language linkage "
8028   "specification">, DefaultError,
8029   InGroup<DiagGroup<"module-import-in-extern-c">>;
8030 def note_module_import_in_extern_c : Note<
8031   "extern \"C\" language linkage specification begins here">;
8032 def err_module_import_not_at_top_level_fatal : Error<
8033   "import of module '%0' appears within %1">, DefaultFatal;
8034 def ext_module_import_not_at_top_level_noop : ExtWarn<
8035   "redundant #include of module '%0' appears within %1">, DefaultError,
8036   InGroup<DiagGroup<"modules-import-nested-redundant">>;
8037 def note_module_import_not_at_top_level : Note<"%0 begins here">;
8038 def err_module_self_import : Error<
8039   "import of module '%0' appears within same top-level module '%1'">;
8040 def err_module_import_in_implementation : Error<
8041   "@import of module '%0' in implementation of '%1'; use #import">;
8042
8043 def ext_equivalent_internal_linkage_decl_in_modules : ExtWarn<
8044   "ambiguous use of internal linkage declaration %0 defined in multiple modules">,
8045   InGroup<DiagGroup<"modules-ambiguous-internal-linkage">>;
8046 def note_equivalent_internal_linkage_decl : Note<
8047   "declared here%select{ in module '%1'|}0">;
8048 }
8049
8050 let CategoryName = "Coroutines Issue" in {
8051 def err_return_in_coroutine : Error<
8052   "return statement not allowed in coroutine; did you mean 'co_return'?">;
8053 def note_declared_coroutine_here : Note<
8054   "function is a coroutine due to use of "
8055   "'%select{co_await|co_yield|co_return}0' here">;
8056 def err_coroutine_objc_method : Error<
8057   "Objective-C methods as coroutines are not yet supported">;
8058 def err_coroutine_unevaluated_context : Error<
8059   "'%0' cannot be used in an unevaluated context">;
8060 def err_coroutine_outside_function : Error<
8061   "'%0' cannot be used outside a function">;
8062 def err_coroutine_ctor_dtor : Error<
8063   "'%1' cannot be used in a %select{constructor|destructor}0">;
8064 def err_coroutine_constexpr : Error<
8065   "'%0' cannot be used in a constexpr function">;
8066 def err_coroutine_varargs : Error<
8067   "'%0' cannot be used in a varargs function">;
8068 def ext_coroutine_without_co_await_co_yield : ExtWarn<
8069   "'co_return' used in a function "
8070   "that uses neither 'co_await' nor 'co_yield'">,
8071   InGroup<DiagGroup<"coreturn-without-coawait">>;
8072 def err_implied_std_coroutine_traits_not_found : Error<
8073   "you need to include <coroutine> before defining a coroutine">;
8074 def err_malformed_std_coroutine_traits : Error<
8075   "'std::coroutine_traits' must be a class template">;
8076 def err_implied_std_coroutine_traits_promise_type_not_found : Error<
8077   "this function cannot be a coroutine: %q0 has no member named 'promise_type'">;
8078 def err_implied_std_coroutine_traits_promise_type_not_class : Error<
8079   "this function cannot be a coroutine: %0 is not a class">;
8080 def err_coroutine_traits_missing_specialization : Error<
8081   "this function cannot be a coroutine: missing definition of "
8082   "specialization %q0">;
8083 }
8084
8085 let CategoryName = "Documentation Issue" in {
8086 def warn_not_a_doxygen_trailing_member_comment : Warning<
8087   "not a Doxygen trailing comment">, InGroup<Documentation>, DefaultIgnore;
8088 } // end of documentation issue category
8089
8090 let CategoryName = "Instrumentation Issue" in {
8091 def warn_profile_data_out_of_date : Warning<
8092   "profile data may be out of date: of %0 function%s0, %1 %plural{1:has|:have}1"
8093   " no data and %2 %plural{1:has|:have}2 mismatched data that will be ignored">,
8094   InGroup<ProfileInstrOutOfDate>;
8095 def warn_profile_data_unprofiled : Warning<
8096   "no profile data available for file \"%0\"">,
8097   InGroup<ProfileInstrUnprofiled>;
8098
8099 } // end of instrumentation issue category
8100
8101 let CategoryName = "Nullability Issue" in {
8102
8103 def warn_mismatched_nullability_attr : Warning<
8104   "nullability specifier %0 conflicts with existing specifier %1">,
8105   InGroup<Nullability>;
8106
8107 def warn_nullability_declspec : Warning<
8108   "nullability specifier %0 cannot be applied "
8109   "to non-pointer type %1; did you mean to apply the specifier to the "
8110   "%select{pointer|block pointer|member pointer|function pointer|"
8111   "member function pointer}2?">,
8112   InGroup<NullabilityDeclSpec>,
8113   DefaultError;
8114
8115 def note_nullability_here : Note<"%0 specified here">;
8116
8117 def err_nullability_nonpointer : Error<
8118   "nullability specifier %0 cannot be applied to non-pointer type %1">;
8119
8120 def warn_nullability_lost : Warning<
8121   "implicit conversion from nullable pointer %0 to non-nullable pointer "
8122   "type %1">,
8123   InGroup<NullableToNonNullConversion>, DefaultIgnore;
8124
8125 def err_nullability_cs_multilevel : Error<
8126   "nullability keyword %0 cannot be applied to multi-level pointer type %1">;
8127 def note_nullability_type_specifier : Note<
8128   "use nullability type specifier %0 to affect the innermost "
8129   "pointer type of %1">;
8130
8131 def warn_null_resettable_setter : Warning<
8132   "synthesized setter %0 for null_resettable property %1 does not handle nil">,
8133   InGroup<Nullability>;
8134
8135 def warn_nullability_missing : Warning<
8136   "%select{pointer|block pointer|member pointer}0 is missing a nullability "
8137   "type specifier (_Nonnull, _Nullable, or _Null_unspecified)">,
8138   InGroup<NullabilityCompleteness>;
8139
8140 def err_objc_type_arg_explicit_nullability : Error<
8141   "type argument %0 cannot explicitly specify nullability">;
8142
8143 def err_objc_type_param_bound_explicit_nullability : Error<
8144   "type parameter %0 bound %1 cannot explicitly specify nullability">;
8145
8146 }
8147
8148 let CategoryName = "Generics Issue" in {
8149
8150 def err_objc_type_param_bound_nonobject : Error<
8151   "type bound %0 for type parameter %1 is not an Objective-C pointer type">;
8152
8153 def err_objc_type_param_bound_missing_pointer : Error<
8154   "missing '*' in type bound %0 for type parameter %1">;
8155 def err_objc_type_param_bound_qualified : Error<
8156   "type bound %1 for type parameter %0 cannot be qualified with '%2'">;
8157
8158 def err_objc_type_param_redecl : Error<
8159   "redeclaration of type parameter %0">;
8160
8161 def err_objc_type_param_arity_mismatch : Error<
8162   "%select{forward class declaration|class definition|category|extension}0 has "
8163   "too %select{few|many}1 type parameters (expected %2, have %3)">;
8164
8165 def err_objc_type_param_bound_conflict : Error<
8166   "type bound %0 for type parameter %1 conflicts with "
8167   "%select{implicit|previous}2 bound %3%select{for type parameter %5|}4">;
8168
8169 def err_objc_type_param_variance_conflict : Error<
8170   "%select{in|co|contra}0variant type parameter %1 conflicts with previous "
8171   "%select{in|co|contra}2variant type parameter %3">;
8172
8173 def note_objc_type_param_here : Note<"type parameter %0 declared here">;
8174
8175 def err_objc_type_param_bound_missing : Error<
8176   "missing type bound %0 for type parameter %1 in %select{@interface|@class}2">;
8177
8178 def err_objc_parameterized_category_nonclass : Error<
8179   "%select{extension|category}0 of non-parameterized class %1 cannot have type "
8180   "parameters">;
8181
8182 def err_objc_parameterized_forward_class : Error<
8183   "forward declaration of non-parameterized class %0 cannot have type "
8184   "parameters">;
8185
8186 def err_objc_parameterized_forward_class_first : Error<
8187   "class %0 previously declared with type parameters">;
8188
8189 def err_objc_type_arg_missing_star : Error<
8190   "type argument %0 must be a pointer (requires a '*')">;
8191 def err_objc_type_arg_qualified : Error<
8192   "type argument %0 cannot be qualified with '%1'">;
8193
8194 def err_objc_type_arg_missing : Error<
8195   "no type or protocol named %0">;
8196
8197 def err_objc_type_args_and_protocols : Error<
8198   "angle brackets contain both a %select{type|protocol}0 (%1) and a "
8199   "%select{protocol|type}0 (%2)">;
8200
8201 def err_objc_type_args_non_class : Error<
8202   "type arguments cannot be applied to non-class type %0">;
8203
8204 def err_objc_type_args_non_parameterized_class : Error<
8205   "type arguments cannot be applied to non-parameterized class %0">;
8206
8207 def err_objc_type_args_specialized_class : Error<
8208   "type arguments cannot be applied to already-specialized class type %0">;
8209
8210 def err_objc_type_args_wrong_arity : Error<
8211   "too %select{many|few}0 type arguments for class %1 (have %2, expected %3)">;
8212 }
8213
8214 def err_objc_type_arg_not_id_compatible : Error<
8215   "type argument %0 is neither an Objective-C object nor a block type">;
8216
8217 def err_objc_type_arg_does_not_match_bound : Error<
8218   "type argument %0 does not satisfy the bound (%1) of type parameter %2">;
8219
8220 def warn_objc_redundant_qualified_class_type : Warning<
8221   "parameterized class %0 already conforms to the protocols listed; did you "
8222   "forget a '*'?">, InGroup<ObjCProtocolQualifiers>;
8223
8224 } // end of sema component.