]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td
Copy head to stable/9 as part of 9.0-RELEASE release cycle.
[FreeBSD/stable/9.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 // Constant expressions
18 def err_expr_not_ice : Error<
19   "expression is not an integer constant expression">;
20 def ext_expr_not_ice : Extension<
21   "expression is not integer constant expression "
22   "(but is allowed as an extension)">;
23
24 // Semantic analysis of constant literals.
25 def ext_predef_outside_function : Warning<
26   "predefined identifier is only valid inside function">;
27 def warn_float_overflow : Warning<
28   "magnitude of floating-point constant too large for type %0; maximum is %1">,
29    InGroup<LiteralRange>;
30 def warn_float_underflow : Warning<
31   "magnitude of floating-point constant too small for type %0; minimum is %1">,
32   InGroup<LiteralRange>;
33 def warn_double_const_requires_fp64 : Warning<
34   "double precision constant requires cl_khr_fp64, casting to single precision">;
35
36 // C99 variable-length arrays
37 def ext_vla : Extension<
38   "variable length arrays are a C99 feature, accepted as an extension">,
39   InGroup<VLA>;
40 def err_vla_non_pod : Error<"variable length array of non-POD element type %0">;
41 def err_vla_in_sfinae : Error<
42   "variable length array cannot be formed during template argument deduction">;
43 def err_array_star_in_function_definition : Error<
44   "variable length array must be bound in function definition">;
45 def err_vla_decl_in_file_scope : Error<
46   "variable length array declaration not allowed at file scope">;
47 def err_vla_decl_has_static_storage : Error<
48   "variable length array declaration can not have 'static' storage duration">;
49 def err_vla_decl_has_extern_linkage : Error<
50   "variable length array declaration can not have 'extern' linkage">;
51 def ext_vla_folded_to_constant : Extension<
52   "variable length array folded to constant array as an extension">;
53
54 // C99 variably modified types
55 def err_variably_modified_template_arg : Error<
56   "variably modified type %0 cannot be used as a template argument">;
57 def err_variably_modified_nontype_template_param : Error<
58   "non-type template parameter of variably modified type %0">;
59 def err_variably_modified_new_type : Error<
60   "'new' cannot allocate object of variably modified type %0">;
61
62 // C99 Designated Initializers
63 def ext_designated_init : Extension<
64   "designated initializers are a C99 feature">;
65 def ext_designated_init_cxx : Extension<
66   "designated initializers are a C99 feature, accepted in C++ as an extension">;
67 def err_array_designator_negative : Error<
68   "array designator value '%0' is negative">;
69 def err_array_designator_empty_range : Error<
70   "array designator range [%0, %1] is empty">;
71 def err_array_designator_non_array : Error<
72   "array designator cannot initialize non-array type %0">;
73 def err_array_designator_too_large : Error<
74   "array designator index (%0) exceeds array bounds (%1)">;
75 def err_field_designator_non_aggr : Error<
76   "field designator cannot initialize a "
77   "%select{non-struct, non-union|non-class}0 type %1">;
78 def err_field_designator_unknown : Error<
79   "field designator %0 does not refer to any field in type %1">;
80 def err_field_designator_nonfield : Error<
81   "field designator %0 does not refer to a non-static data member">;
82 def note_field_designator_found : Note<"field designator refers here">;
83 def err_designator_for_scalar_init : Error<
84   "designator in initializer for scalar type %0">;
85 def warn_subobject_initializer_overrides : Warning<
86   "subobject initialization overrides initialization of other fields "
87   "within its enclosing subobject">, InGroup<InitializerOverrides>;
88 def warn_initializer_overrides : Warning<
89   "initializer overrides prior initialization of this subobject">,
90   InGroup<InitializerOverrides>;
91 def note_previous_initializer : Note<
92   "previous initialization %select{|with side effects }0is here"
93   "%select{| (side effects may not occur at run time)}0">;
94 def err_designator_into_flexible_array_member : Error<
95   "designator into flexible array member subobject">;
96 def note_flexible_array_member : Note<
97   "initialized flexible array member %0 is here">;
98 def ext_flexible_array_init : Extension<
99   "flexible array initialization is a GNU extension">, InGroup<GNU>;
100
101 // Declarations.
102 def ext_anon_param_requires_type_specifier : Extension<
103   "type specifier required for unnamed parameter, defaults to int">;
104 def err_bad_variable_name : Error<
105   "'%0' cannot be the name of a variable or data member">;
106 def err_bad_parameter_name : Error<
107   "'%0' cannot be the name of a parameter">;
108 def err_parameter_name_omitted : Error<"parameter name omitted">;
109 def warn_unused_parameter : Warning<"unused parameter %0">,
110   InGroup<UnusedParameter>, DefaultIgnore;
111 def warn_unused_variable : Warning<"unused variable %0">,
112   InGroup<UnusedVariable>, DefaultIgnore;
113 def warn_unused_exception_param : Warning<"unused exception parameter %0">,
114   InGroup<UnusedExceptionParameter>, DefaultIgnore;
115 def warn_decl_in_param_list : Warning<
116   "declaration of %0 will not be visible outside of this function">;
117 def warn_unused_function : Warning<"unused function %0">,
118   InGroup<UnusedFunction>, DefaultIgnore;
119 def warn_unused_member_function : Warning<"unused member function %0">,
120   InGroup<UnusedMemberFunction>, DefaultIgnore;
121 def warn_used_but_marked_unused: Warning<"%0 was marked unused but was used">,
122   InGroup<UsedButMarkedUnused>, DefaultIgnore;
123 def warn_unneeded_internal_decl : Warning<
124   "%select{function|variable}0 %1 is not needed and will not be emitted">,
125   InGroup<UnneededInternalDecl>, DefaultIgnore;
126 def warn_unneeded_member_function : Warning<
127   "member function %0 is not needed and will not be emitted">,
128   InGroup<UnneededMemberFunction>, DefaultIgnore;
129
130 def warn_parameter_size: Warning<
131   "%0 is a large (%1 bytes) pass-by-value argument; "
132   "pass it by reference instead ?">, InGroup<LargeByValueCopy>;
133 def warn_return_value_size: Warning<
134   "return value of %0 is a large (%1 bytes) pass-by-value object; "
135   "pass it by reference instead ?">, InGroup<LargeByValueCopy>;
136
137 def warn_implicit_function_decl : Warning<
138   "implicit declaration of function %0">,
139   InGroup<ImplicitFunctionDeclare>, DefaultIgnore;
140 def ext_implicit_function_decl : ExtWarn<
141   "implicit declaration of function %0 is invalid in C99">,
142   InGroup<ImplicitFunctionDeclare>;
143
144 def err_ellipsis_first_arg : Error<
145   "ISO C requires a named argument before '...'">;
146 def err_declarator_need_ident : Error<"declarator requires an identifier">;
147 def err_bad_language : Error<"unknown linkage language">;
148 def warn_use_out_of_scope_declaration : Warning<
149   "use of out-of-scope declaration of %0">;
150 def err_inline_non_function : Error<
151   "'inline' can only appear on functions">;
152 def warn_qual_return_type : Warning< 
153   "'%0' type qualifier%s1 on return type %plural{1:has|:have}1 no effect">,
154   InGroup<IgnoredQualifiers>, DefaultIgnore;
155
156 def warn_decl_shadow :
157   Warning<"declaration shadows a %select{"
158           "local variable|"
159           "variable in %2|"
160           "static data member of %2|"
161           "field of %2}1">,
162   InGroup<Shadow>, DefaultIgnore;
163
164 // C++ using declarations
165 def err_using_requires_qualname : Error<
166   "using declaration requires a qualified name">;
167 def err_using_typename_non_type : Error<
168   "'typename' keyword used on a non-type">;
169 def err_using_dependent_value_is_type : Error<
170   "dependent using declaration resolved to type without 'typename'">;
171 def err_using_decl_nested_name_specifier_is_not_class : Error<
172   "using declaration in class refers into '%0', which is not a class">;
173 def err_using_decl_nested_name_specifier_is_current_class : Error<
174   "using declaration refers to its own class">;
175 def err_using_decl_nested_name_specifier_is_not_base_class : Error<
176   "using declaration refers into '%0', which is not a base class of %1">;
177 def err_using_decl_constructor_not_in_direct_base : Error<
178   "%0 is not a direct base of %1, can not inherit constructors">;
179 def err_using_decl_constructor_conflict : Error<
180   "can not inherit constructor, already inherited constructor with "
181   "the same signature">;
182 def note_using_decl_constructor_conflict_current_ctor : Note<
183   "conflicting constructor">;
184 def note_using_decl_constructor_conflict_previous_ctor : Note<
185   "previous constructor">;
186 def note_using_decl_constructor_conflict_previous_using : Note<
187   "previously inherited here">;
188 def err_using_decl_can_not_refer_to_class_member : Error<
189   "using declaration can not refer to class member">;
190 def err_using_decl_can_not_refer_to_namespace : Error<
191   "using declaration can not refer to namespace">;
192 def err_using_decl_constructor : Error<
193   "using declaration can not refer to a constructor">;
194 def err_using_decl_destructor : Error<
195   "using declaration can not refer to a destructor">;
196 def err_using_decl_template_id : Error<
197   "using declaration can not refer to a template specialization">;
198 def note_using_decl_target : Note<"target of using declaration">;
199 def note_using_decl_conflict : Note<"conflicting declaration">;
200 def err_using_decl_redeclaration : Error<"redeclaration of using decl">;
201 def err_using_decl_conflict : Error<
202   "target of using declaration conflicts with declaration already in scope">;
203 def err_using_decl_conflict_reverse : Error<
204   "declaration conflicts with target of using declaration already in scope">;
205 def note_using_decl : Note<"%select{|previous }0using declaration">;
206
207 def warn_access_decl_deprecated : Warning<
208   "access declarations are deprecated; use using declarations instead">,
209   InGroup<Deprecated>;
210
211 def warn_global_constructor : Warning<
212   "declaration requires a global constructor">,
213   InGroup<GlobalConstructors>, DefaultIgnore;
214 def warn_global_destructor : Warning<
215   "declaration requires a global destructor">,
216    InGroup<GlobalConstructors>, DefaultIgnore;
217 def warn_exit_time_destructor : Warning<
218   "declaration requires an exit-time destructor">,
219   InGroup<ExitTimeDestructors>, DefaultIgnore;
220
221 def err_invalid_thread : Error<
222   "'__thread' is only allowed on variable declarations">;
223 def err_thread_non_global : Error<
224   "'__thread' variables must have global storage">;
225 def err_thread_unsupported : Error<
226   "thread-local storage is unsupported for the current target">;
227
228 def warn_maybe_falloff_nonvoid_function : Warning<
229   "control may reach end of non-void function">,
230   InGroup<ReturnType>;
231 def warn_falloff_nonvoid_function : Warning<
232   "control reaches end of non-void function">,
233   InGroup<ReturnType>;
234 def err_maybe_falloff_nonvoid_block : Error<
235   "control may reach end of non-void block">;
236 def err_falloff_nonvoid_block : Error<
237   "control reaches end of non-void block">;
238 def warn_suggest_noreturn_function : Warning<
239   "function could be attribute 'noreturn'">,
240   InGroup<DiagGroup<"missing-noreturn">>, DefaultIgnore;
241 def warn_suggest_noreturn_block : Warning<
242   "block could be attribute 'noreturn'">,
243   InGroup<DiagGroup<"missing-noreturn">>, DefaultIgnore;
244 def warn_unreachable : Warning<"will never be executed">,
245   InGroup<DiagGroup<"unreachable-code">>, DefaultIgnore;
246
247 /// Built-in functions.
248 def ext_implicit_lib_function_decl : ExtWarn<
249   "implicitly declaring C library function '%0' with type %1">;
250 def note_please_include_header : Note<
251   "please include the header <%0> or explicitly provide a "
252   "declaration for '%1'">;
253 def note_previous_builtin_declaration : Note<"%0 is a builtin with type %1">;
254 def warn_implicit_decl_requires_stdio : Warning<
255   "declaration of built-in function '%0' requires inclusion of the header "
256   "<stdio.h>">;
257 def warn_implicit_decl_requires_setjmp : Warning<
258   "declaration of built-in function '%0' requires inclusion of the header "
259   "<setjmp.h>">;
260 def warn_redecl_library_builtin : Warning<
261   "incompatible redeclaration of library function %0">;
262 def err_builtin_definition : Error<"definition of builtin function %0">;
263 def err_types_compatible_p_in_cplusplus : Error<
264   "__builtin_types_compatible_p is not valid in C++">;
265 def warn_builtin_unknown : Warning<"use of unknown builtin %0">, DefaultError;
266 def warn_dyn_class_memaccess : Warning<
267   "%select{destination for|source of}0 this %1 call is a pointer to dynamic "
268   "class %2; vtable pointer will be overwritten">, 
269   InGroup<DiagGroup<"dynamic-class-memaccess">>;
270 def note_bad_memaccess_silence : Note<
271   "explicitly cast the pointer to silence this warning">;
272 def warn_sizeof_pointer_expr_memaccess : Warning<
273   "argument to 'sizeof' in %0 call is the same expression as the "
274   "%select{destination|source}1; did you mean to "
275   "%select{dereference it|remove the addressof|provide an explicit length}2?">,
276   InGroup<DiagGroup<"sizeof-pointer-memaccess">>;
277 def warn_sizeof_pointer_type_memaccess : Warning<
278   "argument to 'sizeof' in %0 call is the same pointer type %1 as the "
279   "%select{destination|source}2; expected %3 or an explicit length">,
280   InGroup<DiagGroup<"sizeof-pointer-memaccess">>;
281
282 /// main()
283 // static/inline main() are not errors in C, just in C++.
284 def warn_unusual_main_decl : Warning<"'main' should not be declared "
285     "%select{static|inline|static or inline}0">;
286 def err_unusual_main_decl : Error<"'main' is not allowed to be declared "
287     "%select{static|inline|static or inline}0">;
288 def err_main_template_decl : Error<"'main' cannot be a template">;
289 def err_main_returns_nonint : Error<"'main' must return 'int'">;
290 def err_main_surplus_args : Error<"too many parameters (%0) for 'main': "
291     "must be 0, 2, or 3">;
292 def warn_main_one_arg : Warning<"only one parameter on 'main' declaration">;
293 def err_main_arg_wrong : Error<"%select{first|second|third|fourth}0 "
294     "parameter of 'main' (%select{argument count|argument array|environment|"
295     "platform-specific data}0) must be of type %1">;
296
297 /// parser diagnostics
298 def ext_typedef_without_a_name : ExtWarn<"typedef requires a name">,
299   InGroup<MissingDeclarations>;
300 def err_typedef_not_identifier : Error<"typedef name must be an identifier">;
301 def err_statically_allocated_object : Error<
302   "interface type cannot be statically allocated">;
303 def err_object_cannot_be_passed_returned_by_value : Error<
304   "interface type %1 cannot be %select{returned|passed}0 by value"
305   "; did you forget * in %1">;
306 def warn_enum_value_overflow : Warning<"overflow in enumeration value">;
307 def warn_pragma_options_align_unsupported_option : Warning<
308   "unsupported alignment option in '#pragma options align'">;
309 def warn_pragma_options_align_reset_failed : Warning<
310   "#pragma options align=reset failed: %0">;
311 def err_pragma_options_align_mac68k_target_unsupported : Error<
312   "mac68k alignment pragma is not supported on this target">;
313 def warn_pragma_pack_invalid_alignment : Warning<
314   "expected #pragma pack parameter to be '1', '2', '4', '8', or '16'">;
315 // Follow the MSVC implementation.
316 def warn_pragma_pack_show : Warning<"value of #pragma pack(show) == %0">;
317 def warn_pragma_pack_pop_identifer_and_alignment : Warning<
318   "specifying both a name and alignment to 'pop' is undefined">;
319 def warn_pragma_pack_pop_failed : Warning<"#pragma pack(pop, ...) failed: %0">;
320
321 def warn_pragma_unused_undeclared_var : Warning<
322   "undeclared variable %0 used as an argument for '#pragma unused'">;
323 def warn_pragma_unused_expected_var_arg : Warning<
324   "only variables can be arguments to '#pragma unused'">;
325 def err_unsupported_pragma_weak : Error<
326   "using '#pragma weak' to refer to an undeclared identifier is not yet supported">;
327
328 /// Objective-C parser diagnostics
329 def err_duplicate_class_def : Error<
330   "duplicate interface definition for class %0">;
331 def err_undef_superclass : Error<
332   "cannot find interface declaration for %0, superclass of %1">;
333 def err_forward_superclass : Error<
334   "attempting to use the forward class %0 as superclass of %1">;
335 def err_no_nsconstant_string_class : Error<
336   "cannot find interface declaration for %0">;
337 def err_recursive_superclass : Error<
338   "trying to recursively use %0 as superclass of %1">;
339 def warn_previous_alias_decl : Warning<"previously declared alias is ignored">;
340 def err_conflicting_aliasing_type : Error<"conflicting types for alias %0">;
341 def warn_undef_interface : Warning<"cannot find interface declaration for %0">;
342 def warn_duplicate_protocol_def : Warning<"duplicate protocol definition of %0 is ignored">;
343 def err_protocol_has_circular_dependency : Error<
344   "protocol has circular dependency">;
345 def err_undeclared_protocol : Error<"cannot find protocol declaration for %0">;
346 def warn_undef_protocolref : Warning<"cannot find protocol definition for %0">;
347 def warn_readonly_property : Warning<
348   "attribute 'readonly' of property %0 restricts attribute "
349   "'readwrite' of property inherited from %1">;
350
351 def warn_property_attribute : Warning<
352   "property %0 '%1' attribute does not match the property inherited from %2">;
353 def warn_property_types_are_incompatible : Warning<
354   "property type %0 is incompatible with type %1 inherited from %2">;
355 def err_undef_interface : Error<"cannot find interface declaration for %0">;
356 def err_class_extension_after_impl : Error<
357   "cannot declare class extension for %0 after class implementation">;
358 def note_implementation_declared : Note<
359   "class implementation is declared here">;
360 def note_class_declared : Note<
361   "class is declared here">;
362 def warn_dup_category_def : Warning<
363   "duplicate definition of category %1 on interface %0">;
364 def err_conflicting_super_class : Error<"conflicting super class name %0">;
365 def err_dup_implementation_class : Error<"reimplementation of class %0">;
366 def err_dup_implementation_category : Error<
367   "reimplementation of category %1 for class %0">;
368 def err_conflicting_ivar_type : Error<
369   "instance variable %0 has conflicting type: %1 vs %2">;
370 def err_duplicate_ivar_declaration : Error<
371   "instance variable is already declared">;
372 def warn_on_superclass_use : Warning<
373   "class implementation may not have super class">;
374 def err_conflicting_ivar_bitwidth : Error<
375   "instance variable %0 has conflicting bit-field width">;
376 def err_conflicting_ivar_name : Error<
377   "conflicting instance variable names: %0 vs %1">;
378 def err_inconsistant_ivar_count : Error<
379   "inconsistent number of instance variables specified">;
380 def warn_incomplete_impl : Warning<"incomplete implementation">,
381   InGroup<DiagGroup<"incomplete-implementation">>;
382 def note_undef_method_impl : Note<"method definition for %0 not found">;
383 def note_required_for_protocol_at : 
384   Note<"required for direct or indirect protocol %0">;
385
386 def warn_conflicting_ret_types : Warning<
387   "conflicting return type in implementation of %0: %1 vs %2">;
388 def warn_conflicting_ret_type_modifiers : Warning<
389   "conflicting distributed object modifiers on return type "
390   "in implementation of %0">,
391   InGroup<DiagGroup<"distributed-object-modifiers">>;
392 def warn_non_covariant_ret_types : Warning<
393   "conflicting return type in implementation of %0: %1 vs %2">,
394   InGroup<DiagGroup<"method-signatures">>, DefaultIgnore;
395
396 def warn_conflicting_param_types : Warning<
397   "conflicting parameter types in implementation of %0: %1 vs %2">;
398 def warn_conflicting_param_modifiers : Warning<
399   "conflicting distributed object modifiers on parameter type "
400   "in implementation of %0">,
401   InGroup<DiagGroup<"distributed-object-modifiers">>;
402 def warn_non_contravariant_param_types : Warning<
403   "conflicting parameter types in implementation of %0: %1 vs %2">,
404   InGroup<DiagGroup<"method-signatures">>, DefaultIgnore;
405 def warn_conflicting_variadic :Warning<
406   "conflicting variadic declaration of method and its implementation">;
407
408 def warn_implements_nscopying : Warning<
409 "default assign attribute on property %0 which implements "
410 "NSCopying protocol is not appropriate with -fobjc-gc[-only]">;
411
412 def warn_multiple_method_decl : Warning<"multiple methods named %0 found">;
413 def warn_strict_multiple_method_decl : Warning<
414   "multiple methods named %0 found">, InGroup<StrictSelector>, DefaultIgnore;
415 def warn_accessor_property_type_mismatch : Warning<
416   "type of property %0 does not match type of accessor %1">;
417 def note_declared_at : Note<"declared here">;
418 def note_method_declared_at : Note<"method declared here">;
419 def err_setter_type_void : Error<"type of setter must be void">;
420 def err_duplicate_method_decl : Error<"duplicate declaration of method %0">;
421 def err_missing_atend : Error<"'@end' is missing in implementation context">;
422 def err_objc_var_decl_inclass : 
423     Error<"cannot declare variable inside @interface or @protocol">;
424 def error_missing_method_context : Error<
425   "missing context for method declaration">;
426 def err_objc_property_attr_mutually_exclusive : Error<
427   "property attributes '%0' and '%1' are mutually exclusive">;
428 def err_objc_property_requires_object : Error<
429   "property with '%0' attribute must be of object type">;
430 def warn_objc_property_no_assignment_attribute : Warning<
431   "no 'assign', 'retain', or 'copy' attribute is specified - "
432   "'assign' is assumed">;
433 def warn_objc_property_default_assign_on_object : Warning<
434   "default property attribute 'assign' not appropriate for non-gc object">;
435 def warn_property_attr_mismatch : Warning<
436   "property attribute in continuation class does not match the primary class">;
437 def warn_objc_property_copy_missing_on_block : Warning<
438     "'copy' attribute must be specified for the block property "
439     "when -fobjc-gc-only is specified">;
440 def warn_atomic_property_rule : Warning<
441   "writable atomic property %0 cannot pair a synthesized setter/getter "
442   "with a user defined setter/getter">;
443 def warn_ownin_getter_rule : Warning<
444   "property's synthesized getter follows Cocoa naming"
445   " convention for returning 'owned' objects">;
446 def warn_property_getter_owning_mismatch : Warning<
447   "property declared as returning non-retained objects"
448   "; getter returning retained objects">;
449 def err_ownin_getter_rule : Error<
450   "property's synthesized getter follows Cocoa naming"
451   " convention for returning 'owned' objects">;
452 def warn_default_atomic_custom_getter_setter : Warning<
453   "atomic by default property %0 has a user defined %select{getter|setter}1 "
454   "(property should be marked 'atomic' if this is intended)">,
455   InGroup<CustomAtomic>, DefaultIgnore;
456 def err_use_continuation_class : Error<
457   "illegal redeclaration of property in continuation class %0"
458   " (attribute must be 'readwrite', while its primary must be 'readonly')">;
459 def err_use_continuation_class_redeclaration_readwrite : Error<
460   "illegal redeclaration of 'readwrite' property in continuation class %0"
461   " (perhaps you intended this to be a 'readwrite' redeclaration of a "
462   "'readonly' public property?)">;
463 def err_continuation_class : Error<"continuation class has no primary class">;
464 def err_property_type : Error<"property cannot have array or function type %0">;
465 def error_missing_property_context : Error<
466   "missing context for property implementation declaration">;
467 def error_bad_property_decl : Error<
468   "property implementation must have its declaration in interface %0">;
469 def error_category_property : Error<
470   "property declared in category %0 cannot be implemented in "
471   "class implementation">;
472 def note_property_declare : Note<
473   "property declared here">;
474 def error_synthesize_category_decl : Error<
475   "@synthesize not allowed in a category's implementation">;
476 def error_reference_property : Error<
477   "property of reference type is not supported">;
478 def error_missing_property_interface : Error<
479   "property implementation in a category with no category declaration">;
480 def error_bad_category_property_decl : Error<
481   "property implementation must have its declaration in the category %0">;
482 def error_bad_property_context : Error<
483   "property implementation must be in a class or category implementation">;
484 def error_missing_property_ivar_decl : Error<
485   "synthesized property %0 must either be named the same as a compatible"
486   " ivar or must explicitly name an ivar">;
487 def error_synthesize_weak_non_arc_or_gc : Error<
488   "@synthesize of 'weak' property is only allowed in ARC or GC mode">;
489 def err_arc_perform_selector_retains : Error<
490   "performSelector names a selector which retains the object">;
491 def warn_arc_perform_selector_leaks : Warning<
492   "performSelector may cause a leak because its selector is unknown">;
493
494 def error_synthesized_ivar_yet_not_supported : Error<
495   "instance variable synthesis not yet supported"
496   " (need to declare %0 explicitly)">;
497
498 def error_property_ivar_type : Error<
499   "type of property %0 (%1) does not match type of ivar %2 (%3)">;
500 def error_ivar_in_superclass_use : Error<
501   "property %0 attempting to use ivar %1 declared in super class %2">;
502 def error_weak_property : Error<
503   "existing ivar %1 for __weak property %0 must be __weak">;
504 def error_strong_property : Error<
505   "existing ivar %1 for strong property %0 may not be __weak">;
506 def error_dynamic_property_ivar_decl : Error<
507   "dynamic property can not have ivar specification">;
508 def error_duplicate_ivar_use : Error<
509   "synthesized properties %0 and %1 both claim ivar %2">;
510 def error_property_implemented : Error<"property %0 is already implemented">;
511 def warn_objc_property_attr_mutually_exclusive : Warning<
512   "property attributes '%0' and '%1' are mutually exclusive">,
513   InGroup<ReadOnlySetterAttrs>, DefaultIgnore;
514 def warn_undeclared_selector : Warning<
515   "undeclared selector %0">, InGroup<UndeclaredSelector>, DefaultIgnore;
516 def warn_implicit_atomic_property : Warning<
517   "property is assumed atomic by default">, InGroup<ImplicitAtomic>, DefaultIgnore;
518 def warn_auto_implicit_atomic_property : Warning<
519   "property is assumed atomic when auto-synthesizing the property">, 
520   InGroup<ImplicitAtomic>, DefaultIgnore;
521 def warn_unimplemented_selector:  Warning<
522   "unimplemented selector %0">, InGroup<Selector>, DefaultIgnore;
523 def warn_unimplemented_protocol_method : Warning<
524   "method in protocol not implemented">, InGroup<Protocol>;
525
526 // C++ declarations
527 def err_static_assert_expression_is_not_constant : Error<
528   "static_assert expression is not an integral constant expression">;
529 def err_static_assert_failed : Error<"static_assert failed \"%0\"">;
530
531 def warn_inline_namespace_reopened_noninline : Warning<
532   "inline namespace cannot be re-opened as a non-inline namespace">;
533 def err_inline_namespace_mismatch : Error<
534   "%select{|non-}0inline namespace "
535   "cannot be reopened as %select{non-|}0inline">;
536
537 def err_unexpected_friend : Error<
538   "friends can only be classes or functions">;
539 def ext_enum_friend : ExtWarn<
540   "enumeration type %0 cannot be a friend">;
541 def ext_nonclass_type_friend : ExtWarn<
542   "non-class friend type %0 is a C++0x extension">, InGroup<CXX0x>;
543 def err_friend_is_member : Error<
544   "friends cannot be members of the declaring class">;
545 def ext_unelaborated_friend_type : ExtWarn<
546   "specify '%select{struct|union|class|enum}0' to befriend %1; accepted "
547   "as a C++0x extension">, InGroup<CXX0x>;
548 def err_qualified_friend_not_found : Error<
549   "no function named %0 with type %1 was found in the specified scope">;
550 def err_introducing_special_friend : Error<
551   "must use a qualified name when declaring a %select{constructor|"
552   "destructor|conversion operator}0 as a friend">;
553 def err_tagless_friend_type_template : Error<
554   "friend type templates must use an elaborated type">;
555 def err_no_matching_local_friend : Error<
556   "no matching function found in local scope">;
557 def err_partial_specialization_friend : Error<
558   "partial specialization cannot be declared as a friend">;
559
560 def err_abstract_type_in_decl : Error<
561   "%select{return|parameter|variable|field}0 type %1 is an abstract class">;
562 def err_allocation_of_abstract_type : Error<
563   "allocating an object of abstract class type %0">;
564 def err_throw_abstract_type : Error<
565   "cannot throw an object of abstract type %0">;
566 def err_array_of_abstract_type : Error<"array of abstract class type %0">;
567
568 def err_multiple_final_overriders : Error<
569   "virtual function %q0 has more than one final overrider in %1">; 
570 def note_final_overrider : Note<"final overrider of %q0 in %1">;
571
572 def err_type_defined_in_type_specifier : Error<
573   "%0 can not be defined in a type specifier">;
574 def err_type_defined_in_result_type : Error<
575   "%0 can not be defined in the result type of a function">;
576 def err_type_defined_in_param_type : Error<
577   "%0 can not be defined in a parameter type">;
578 def err_type_defined_in_alias_template : Error<
579   "%0 can not be defined in a type alias template">;
580
581 def note_pure_virtual_function : Note<
582   "unimplemented pure virtual method %0 in %1">;
583
584 def err_deleted_decl_not_first : Error<
585   "deleted definition must be first declaration">;
586
587 def warn_weak_vtable : Warning<
588   "%0 has no out-of-line virtual method definitions; its vtable will be "
589   "emitted in every translation unit">,
590   InGroup<DiagGroup<"weak-vtables">>, DefaultIgnore;
591
592 def ext_using_undefined_std : ExtWarn<
593   "using directive refers to implicitly-defined namespace 'std'">;
594   
595 // C++ exception specifications
596 def err_exception_spec_in_typedef : Error<
597   "exception specifications are not allowed in %select{typedefs|type aliases}0">;
598 def err_distant_exception_spec : Error<
599   "exception specifications are not allowed beyond a single level "
600   "of indirection">;
601 def err_incomplete_in_exception_spec : Error<
602   "%select{|pointer to |reference to }0incomplete type %1 is not allowed "
603   "in exception specification">;
604 def err_mismatched_exception_spec : Error<
605   "exception specification in declaration does not match previous declaration">;
606 def warn_mismatched_exception_spec : ExtWarn<
607   "exception specification in declaration does not match previous declaration">;
608 def err_override_exception_spec : Error<
609   "exception specification of overriding function is more lax than "
610   "base version">;
611 def warn_override_exception_spec : ExtWarn<
612   "exception specification of overriding function is more lax than "
613   "base version">, InGroup<Microsoft>;
614 def err_incompatible_exception_specs : Error<
615   "target exception specification is not superset of source">;
616 def err_deep_exception_specs_differ : Error<
617   "exception specifications of %select{return|argument}0 types differ">;
618 def warn_missing_exception_specification : Warning<
619   "%0 is missing exception specification '%1'">;
620 def err_noexcept_needs_constant_expression : Error<
621   "argument to noexcept specifier must be a constant expression">;
622 def err_exception_spec_unknown : Error<
623   "exception specification is not available until end of class definition">;
624
625 // C++ access checking
626 def err_class_redeclared_with_different_access : Error<
627   "%0 redeclared with '%1' access">;
628 def err_access : Error<
629   "%1 is a %select{private|protected}0 member of %3">, AccessControl;
630 def war_ms_using_declaration_inaccessible : ExtWarn<
631   "using declaration refers to inaccessible member '%0', which refers "
632   "to accessible member '%1', accepted for Microsoft compatibility">,
633     AccessControl, InGroup<Microsoft>;
634 def err_access_ctor : Error<
635   "calling a %select{private|protected}0 constructor of class %2">, 
636   AccessControl;
637 def ext_rvalue_to_reference_access_ctor : ExtWarn<
638   "C++98 requires an accessible copy constructor for class %2 when binding "
639   "a reference to a temporary; was %select{private|protected}0">,
640   AccessControl, InGroup<BindToTemporaryCopy>;
641 def err_access_base_ctor : Error<
642   // The ERRORs represent other special members that aren't constructors, in
643   // hopes that someone will bother noticing and reporting if they appear
644   "%select{base class|inherited virtual base class}0 %1 has %select{private|"
645   "protected}3 %select{default |copy |move |*ERROR* |*ERROR* "
646   "|*ERROR*|}2constructor">, AccessControl;
647 def err_access_field_ctor : Error<
648   // The ERRORs represent other special members that aren't constructors, in
649   // hopes that someone will bother noticing and reporting if they appear
650   "field of type %0 has %select{private|protected}2 "
651   "%select{default |copy |move |*ERROR* |*ERROR* |*ERROR* |}1constructor">,
652   AccessControl;
653
654 def err_access_ctor_field :
655     Error<"field of type %1 has %select{private|protected}2 constructor">,
656     AccessControl;
657 def err_access_dtor : Error<
658   "calling a %select{private|protected}1 destructor of class %0">, 
659   AccessControl;
660 def err_access_dtor_base :
661     Error<"base class %0 has %select{private|protected}1 destructor">,
662     AccessControl;
663 def err_access_dtor_vbase :
664     Error<"inherited virtual base class %0 has "
665     "%select{private|protected}1 destructor">,
666     AccessControl;
667 def err_access_dtor_temp :
668     Error<"temporary of type %0 has %select{private|protected}1 destructor">,
669     AccessControl;
670 def err_access_dtor_exception :
671     Error<"exception object of type %0 has %select{private|protected}1 "
672           "destructor">, AccessControl;
673 def err_access_dtor_field :
674     Error<"field of type %1 has %select{private|protected}2 destructor">,
675     AccessControl;
676 def err_access_dtor_var :
677     Error<"variable of type %1 has %select{private|protected}2 destructor">,
678     AccessControl;
679 def err_access_assign_field :
680     Error<"field of type %1 has %select{private|protected}2 copy assignment"
681           " operator">,
682     AccessControl;
683 def err_access_assign_base :
684     Error<"base class %0 has %select{private|protected}1 copy assignment"
685           " operator">,
686     AccessControl;
687 def err_access_copy_field :
688     Error<"field of type %1 has %select{private|protected}2 copy constructor">,
689     AccessControl;
690 def err_access_copy_base :
691     Error<"base class %0 has %select{private|protected}1 copy constructor">,
692     AccessControl;
693 def err_access_dtor_ivar :
694     Error<"instance variable of type %0 has %select{private|protected}1 "
695           "destructor">,
696     AccessControl;
697 def note_previous_access_declaration : Note<
698   "previously declared '%1' here">;
699 def err_access_outside_class : Error<
700   "access to %select{private|protected}0 member outside any class context">,
701   AccessControl;
702 def note_access_natural : Note<
703   "%select{|implicitly }1declared %select{private|protected}0 here">;
704 def note_access_constrained_by_path : Note<
705   "constrained by %select{|implicitly }1%select{private|protected}0"
706   " inheritance here">;
707 def note_access_protected_restricted : Note<
708   "object type %select{|%1 }0must derive from context type %2">;
709   
710 // C++ name lookup
711 def err_incomplete_nested_name_spec : Error<
712   "incomplete type %0 named in nested name specifier">;
713 def err_dependent_nested_name_spec : Error<
714   "nested name specifier for a declaration cannot depend on a template "
715   "parameter">;
716 def err_nested_name_member_ref_lookup_ambiguous : Error<
717   "lookup of %0 in member access expression is ambiguous">;
718 def ext_nested_name_member_ref_lookup_ambiguous : ExtWarn<
719   "lookup of %0 in member access expression is ambiguous; using member of %1">,
720   InGroup<AmbigMemberTemplate>;
721 def note_ambig_member_ref_object_type : Note<
722   "lookup in the object type %0 refers here">;
723 def note_ambig_member_ref_scope : Note<
724   "lookup from the current scope refers here">;
725 def err_qualified_member_nonclass : Error<
726   "qualified member access refers to a member in %0">;
727 def err_incomplete_member_access : Error<
728   "member access into incomplete type %0">;
729 def err_incomplete_type : Error<
730   "incomplete type %0 where a complete type is required">;
731   
732 // C++ class members
733 def err_storageclass_invalid_for_member : Error<
734   "storage class specified for a member declaration">;
735 def err_mutable_function : Error<"'mutable' cannot be applied to functions">;
736 def err_mutable_reference : Error<"'mutable' cannot be applied to references">;
737 def err_mutable_const : Error<"'mutable' and 'const' cannot be mixed">;
738 def err_mutable_nonmember : Error<
739   "'mutable' can only be applied to member variables">;
740 def err_virtual_non_function : Error<
741   "'virtual' can only appear on non-static member functions">;
742 def err_virtual_out_of_class : Error<
743   "'virtual' can only be specified inside the class definition">;
744 def err_virtual_member_function_template : Error<
745   "'virtual' can not be specified on member function templates">;
746 def err_static_overrides_virtual : Error<
747   "'static' member function %0 overrides a virtual function in a base class">;
748 def err_explicit_non_function : Error<
749   "'explicit' can only appear on non-static member functions">;
750 def err_explicit_out_of_class : Error<
751   "'explicit' can only be specified inside the class definition">;
752 def err_explicit_non_ctor_or_conv_function : Error<
753   "'explicit' can only be applied to a constructor or conversion function">;
754 def err_static_not_bitfield : Error<"static member %0 cannot be a bit-field">;
755 def err_static_out_of_line : Error<
756   "'static' can only be specified inside the class definition">;
757 def err_typedef_not_bitfield : Error<"typedef member %0 cannot be a bit-field">;
758 def err_not_integral_type_bitfield : Error<
759   "bit-field %0 has non-integral type %1">;
760 def err_not_integral_type_anon_bitfield : Error<
761   "anonymous bit-field has non-integral type %0">;
762 def err_member_function_initialization : Error<
763   "initializer on function does not look like a pure-specifier">;
764 def err_non_virtual_pure : Error<
765   "%0 is not virtual and cannot be declared pure">;
766 def warn_pure_function_definition : ExtWarn<
767   "function definition with pure-specifier is a Microsoft extension">,
768   InGroup<Microsoft>;
769 def err_implicit_object_parameter_init : Error<
770   "cannot initialize object parameter of type %0 with an expression "
771   "of type %1">;
772 def err_qualified_member_of_unrelated : Error<
773   "%q0 is not a member of class %1">;
774
775 def warn_call_to_pure_virtual_member_function_from_ctor_dtor : Warning<
776   "call to pure virtual member function %0; overrides of %0 in subclasses are "
777   "not available in the %select{constructor|destructor}1 of %2">;
778
779 def note_field_decl : Note<"member is declared here">;
780 def note_ivar_decl : Note<"ivar is declared here">;
781 def note_bitfield_decl : Note<"bit-field is declared here">;
782 def note_previous_decl : Note<"%0 declared here">;
783 def note_member_synthesized_at : Note<
784   "implicit default %select{constructor|copy constructor|move constructor|copy "
785   "assignment operator|move assignment operator|destructor}0 for %1 first "
786   "required here">;
787 def err_missing_default_ctor : Error<
788   "%select{|implicit default }0constructor for %1 must explicitly initialize "
789   "the %select{base class|member}2 %3 which does not have a default "
790   "constructor">;
791 def err_illegal_union_or_anon_struct_member : Error<
792   "%select{anonymous struct|union}0 member %1 has a non-trivial "
793   "%select{constructor|copy constructor|move constructor|copy assignment "
794   "operator|move assignment operator|destructor}2">;
795 def note_nontrivial_has_virtual : Note<
796   "because type %0 has a virtual %select{member function|base class}1">;
797 def note_nontrivial_has_nontrivial : Note<
798   "because type %0 has a %select{member|base class}1 with a non-trivial "
799   "%select{constructor|copy constructor|move constructor|copy assignment "
800   "operator|move assignment operator|destructor}2">;
801 def note_nontrivial_user_defined : Note<
802   "because type %0 has a user-declared %select{constructor|copy constructor|"
803   "move constructor|copy assignment operator|move assignment operator|"
804   "destructor}1">;
805 def err_static_data_member_not_allowed_in_union_or_anon_struct : Error<
806   "static data member %0 not allowed in %select{anonymous struct|union}1">; 
807 def err_union_member_of_reference_type : Error<
808   "union member %0 has reference type %1">;
809 def ext_anonymous_struct_union_qualified : Extension<
810   "anonymous %select{struct|union}0 cannot be '%select{const|volatile|"
811   "restrict}1'">;
812 def err_different_return_type_for_overriding_virtual_function : Error<
813   "virtual function %0 has a different return type (%1) than the "
814   "function it overrides (which has return type %2)">;
815 def note_overridden_virtual_function : Note<
816   "overridden virtual function is here">;
817
818 def err_covariant_return_inaccessible_base : Error<
819   "invalid covariant return for virtual function: %1 is a "
820   "%select{private|protected}2 base class of %0">, AccessControl;
821 def err_covariant_return_ambiguous_derived_to_base_conv : Error<
822   "return type of virtual function %3 is not covariant with the return type of "
823   "the function it overrides (ambiguous conversion from derived class "
824   "%0 to base class %1:%2)">;
825 def err_covariant_return_not_derived : Error<
826   "return type of virtual function %0 is not covariant with the return type of "
827   "the function it overrides (%1 is not derived from %2)">;
828 def err_covariant_return_incomplete : Error<
829   "return type of virtual function %0 is not covariant with the return type of "
830   "the function it overrides (%1 is incomplete)">;
831 def err_covariant_return_type_different_qualifications : Error<
832   "return type of virtual function %0 is not covariant with the return type of "
833   "the function it overrides (%1 has different qualifiers than %2)">;
834 def err_covariant_return_type_class_type_more_qualified : Error<
835   "return type of virtual function %0 is not covariant with the return type of "
836   "the function it overrides (class type %1 is more qualified than class "
837   "type %2">;
838   
839 // C++ constructors
840 def err_constructor_cannot_be : Error<"constructor cannot be declared '%0'">;
841 def err_invalid_qualified_constructor : Error<
842   "'%0' qualifier is not allowed on a constructor">;
843 def err_ref_qualifier_constructor : Error<
844   "ref-qualifier '%select{&&|&}0' is not allowed on a constructor">;
845
846 def err_constructor_return_type : Error<
847   "constructor cannot have a return type">;
848 def err_constructor_redeclared : Error<"constructor cannot be redeclared">;
849 def err_constructor_byvalue_arg : Error<
850   "copy constructor must pass its first argument by reference">;
851 def warn_no_constructor_for_refconst : Warning<
852   "%select{struct|union|class|enum}0 %1 does not declare any constructor to "
853   "initialize its non-modifiable members">;
854 def note_refconst_member_not_initialized : Note<
855   "%select{const|reference}0 member %1 will never be initialized">;
856 def ext_ms_explicit_constructor_call : ExtWarn<
857   "explicit constructor calls are a Microsoft extension">, InGroup<Microsoft>;
858
859 // C++ destructors
860 def err_destructor_not_member : Error<
861   "destructor must be a non-static member function">;
862 def err_destructor_cannot_be : Error<"destructor cannot be declared '%0'">;
863 def err_invalid_qualified_destructor : Error<
864   "'%0' qualifier is not allowed on a destructor">;
865 def err_ref_qualifier_destructor : Error<
866   "ref-qualifier '%select{&&|&}0' is not allowed on a destructor">;
867 def err_destructor_return_type : Error<"destructor cannot have a return type">;
868 def err_destructor_redeclared : Error<"destructor cannot be redeclared">;
869 def err_destructor_with_params : Error<"destructor cannot have any parameters">;
870 def err_destructor_variadic : Error<"destructor cannot be variadic">;
871 def err_destructor_typedef_name : Error<
872   "destructor cannot be declared using a %select{typedef|type alias}1 %0 of the class name">;
873 def err_destructor_name : Error<
874   "expected the class name after '~' to name the enclosing class">;
875 def err_destructor_class_name : Error<
876   "expected the class name after '~' to name a destructor">;
877 def err_ident_in_dtor_not_a_type : Error<
878   "identifier %0 in object destruction expression does not name a type">;
879 def err_destructor_expr_type_mismatch : Error<
880   "destructor type %0 in object destruction expression does not match the "
881   "type %1 of the object being destroyed">;
882 def note_destructor_type_here : Note<
883   "type %0 is declared here">;
884
885 def err_destructor_template : Error<
886   "destructor cannot be declared as a template">;
887
888 // C++ initialization
889 def err_init_conversion_failed : Error<
890   "cannot initialize %select{a variable|a parameter|return object|an "
891   "exception object|a member subobject|an array element|a new value|a value|a "
892   "base class|a constructor delegation|a vector element}0 of type %1 with an "
893   "%select{rvalue|lvalue}2 of type %3">;
894
895 def err_lvalue_to_rvalue_ref : Error<"rvalue reference to type %0 cannot bind "
896   "to lvalue of type %1">;
897 def err_invalid_initialization : Error<
898 "invalid initialization of reference of type %0 from expression of type %1">;
899 def err_lvalue_to_rvalue_ambig_ref : Error<"rvalue reference cannot bind to lvalue "
900                                            "due to multiple conversion functions">;
901 def err_not_reference_to_const_init : Error<
902   "%select{non-const|volatile}0 lvalue reference to type %1 cannot be "
903   "initialized with a %select{value|temporary}2 of type %3">;
904 def err_lvalue_reference_bind_to_temporary : Error<
905   "%select{non-const|volatile}0 lvalue reference to type %1 cannot bind to a "
906   "temporary of type %2">;
907 def err_lvalue_reference_bind_to_unrelated : Error<
908   "%select{non-const|volatile}0 lvalue reference to type %1 cannot bind to a "
909   "value of unrelated type %2">;
910 def err_reference_bind_drops_quals : Error<
911   "binding of reference to type %0 to a value of type %1 drops qualifiers">;
912 def err_reference_bind_failed : Error<
913   "reference to type %0 could not bind to an %select{rvalue|lvalue}1 of type "
914   "%2">;
915 def err_reference_bind_init_list : Error<
916   "reference to type %0 cannot bind to an initializer list">;
917 def err_init_list_bad_dest_type : Error<
918   "%select{|non-aggregate }0type %1 cannot be initialized with an initializer "
919   "list">;
920 def err_member_function_call_bad_cvr : Error<"member function %0 not viable: "
921     "'this' argument has type %1, but function is not marked "
922     "%select{const|restrict|const or restrict|volatile|const or volatile|"
923     "volatile or restrict|const, volatile, or restrict}2">;
924
925 def err_reference_init_drops_quals : Error<
926   "initialization of reference to type %0 with a %select{value|temporary}1 of type %2 drops "
927   "qualifiers">;
928 def err_reference_bind_to_bitfield : Error<
929   "%select{non-const|volatile}0 reference cannot bind to bit-field %1">;
930 def err_reference_bind_to_vector_element : Error<
931   "%select{non-const|volatile}0 reference cannot bind to vector element">;
932 def err_reference_var_requires_init : Error<
933   "declaration of reference variable %0 requires an initializer">;
934 def err_const_var_requires_init : Error<
935   "declaration of const variable '%0' requires an initializer">;
936 def err_reference_without_init : Error<
937   "reference to type %0 requires an initializer">;
938 def err_reference_has_multiple_inits : Error<
939   "reference cannot be initialized with multiple values">;
940 def err_init_non_aggr_init_list : Error<
941   "initialization of non-aggregate type %0 with an initializer list">;
942 def err_init_reference_member_uninitialized : Error<
943   "reference member of type %0 uninitialized">;
944 def note_uninit_reference_member : Note<
945   "uninitialized reference member is here">;
946 def warn_field_is_uninit : Warning<"field is uninitialized when used here">,
947   InGroup<Uninitialized>;
948 def warn_uninit_self_reference_in_init : Warning<
949   "variable %0 is uninitialized when used within its own initialization">,
950   InGroup<Uninitialized>;
951 def warn_uninit_var : Warning<
952   "variable %0 is uninitialized when used here">,
953   InGroup<Uninitialized>, DefaultIgnore;
954 def warn_maybe_uninit_var :
955   Warning<"variable %0 may be uninitialized when used here">,
956     InGroup<UninitializedMaybe>, DefaultIgnore;
957 def note_uninit_var_def : Note<
958   "variable %0 is declared here">;
959 def warn_uninit_var_captured_by_block : Warning<
960   "variable %0 is uninitialized when captured by block">,
961   InGroup<Uninitialized>, DefaultIgnore;
962 def warn_maybe_uninit_var_captured_by_block : Warning<
963   "variable %0 may be uninitialized when captured by block">,
964   InGroup<UninitializedMaybe>, DefaultIgnore;
965 def note_var_fixit_add_initialization : Note<
966   "add initialization to silence this warning">;
967 def err_init_incomplete_type : Error<"initialization of incomplete type %0">;
968
969 def err_temp_copy_no_viable : Error<
970   "no viable constructor %select{copying variable|copying parameter|"
971   "returning object|throwing object|copying member subobject|copying array "
972   "element|allocating object|copying temporary|initializing base subobject|"
973   "initializing vector element}0 of type %1">;
974 def ext_rvalue_to_reference_temp_copy_no_viable : ExtWarn<
975   "no viable constructor %select{copying variable|copying parameter|"
976   "returning object|throwing object|copying member subobject|copying array "
977   "element|allocating object|copying temporary|initializing base subobject|"
978   "initializing vector element}0 of type %1; C++98 requires a copy "
979   "constructor when binding a reference to a temporary">,
980   InGroup<BindToTemporaryCopy>;
981 def err_temp_copy_ambiguous : Error<
982   "ambiguous constructor call when %select{copying variable|copying "
983   "parameter|returning object|throwing object|copying member subobject|copying "
984   "array element|allocating object|copying temporary|initializing base subobject|"
985   "initializing vector element}0 of type %1">;
986 def err_temp_copy_deleted : Error<
987   "%select{copying variable|copying parameter|returning object|throwing "
988   "object|copying member subobject|copying array element|allocating object|"
989   "copying temporary|initializing base subobject|initializing vector element}0 "
990   "of type %1 invokes deleted constructor">;
991 def err_temp_copy_incomplete : Error<
992   "copying a temporary object of incomplete type %0">;
993
994 // C++0x decltype
995 def err_cannot_determine_declared_type_of_overloaded_function : Error<
996     "cannot determine the type of an overloaded function">;
997     
998 // C++0x auto
999 def err_auto_variable_cannot_appear_in_own_initializer : Error<
1000   "variable %0 declared with 'auto' type cannot appear in its own initializer">;
1001 def err_illegal_decl_array_of_auto : Error<
1002   "'%0' declared as array of %1">;
1003 def err_new_array_of_auto : Error<
1004   "cannot allocate array of 'auto'">;
1005 def err_auto_not_allowed : Error<
1006   "'auto' not allowed %select{in function prototype|in non-static struct member"
1007   "|in non-static union member|in non-static class member|in exception declaration"
1008   "|in template parameter|in block literal|in template argument"
1009   "|in typedef|in type alias|in function return type|here}0">;
1010 def err_auto_var_requires_init : Error<
1011   "declaration of variable %0 with type %1 requires an initializer">;
1012 def err_auto_new_requires_ctor_arg : Error<
1013   "new expression for type %0 requires a constructor argument">;
1014 def err_auto_var_init_multiple_expressions : Error<
1015   "initializer for variable %0 with type %1 contains multiple expressions">;
1016 def err_auto_new_ctor_multiple_expressions : Error<
1017   "new expression for type %0 contains multiple constructor arguments">;
1018 def err_auto_missing_trailing_return : Error<
1019   "'auto' return without trailing return type">;
1020 def err_trailing_return_without_auto : Error<
1021   "function with trailing return type must specify return type 'auto', not %0">;
1022 def err_trailing_return_in_parens : Error<
1023   "trailing return type may not be nested within parentheses">;
1024 def err_auto_var_deduction_failure : Error<
1025   "variable %0 with type %1 has incompatible initializer of type %2">;
1026 def err_auto_new_deduction_failure : Error<
1027   "new expression for type %0 has incompatible constructor argument of type %1">;
1028 def err_auto_different_deductions : Error<
1029   "'auto' deduced as %0 in declaration of %1 and deduced as %2 in declaration of %3">;
1030
1031 // C++0x override control
1032 def override_keyword_only_allowed_on_virtual_member_functions : Error<
1033   "only virtual member functions can be marked '%0'">;
1034 def err_function_marked_override_not_overriding : Error<
1035   "%0 marked 'override' but does not override any member functions">;
1036 def err_class_marked_final_used_as_base : Error<
1037   "base %0 is marked 'final'">;
1038
1039 // C++0x attributes
1040 def err_repeat_attribute : Error<"'%0' attribute cannot be repeated">;
1041
1042 // C++0x [[final]]
1043 def err_final_function_overridden : Error<
1044   "declaration of %0 overrides a 'final' function">;
1045 def err_final_base : Error<
1046   "derivation from 'final' %0">;
1047
1048 // C++0x scoped enumerations
1049 def err_enum_invalid_underlying : Error<
1050   "non-integral type %0 is an invalid underlying type">;
1051 def err_enumerator_too_large : Error<
1052   "enumerator value is not representable in the underlying type %0">;
1053 def ext_enumerator_too_large : ExtWarn<
1054   "enumerator value is not representable in the underlying type %0">,
1055   InGroup<Microsoft>;
1056 def err_enumerator_wrapped : Error<
1057   "enumerator value %0 is not representable in the underlying type %1">;
1058 def err_enum_redeclare_type_mismatch : Error<
1059   "enumeration redeclared with different underlying type %0 (was %1)">;
1060 def err_enum_redeclare_fixed_mismatch : Error<
1061   "enumeration previously declared with %select{non|}0fixed underlying type">;
1062 def err_enum_redeclare_scoped_mismatch : Error<
1063   "enumeration previously declared as %select{un|}0scoped">;
1064 def err_only_enums_have_underlying_types : Error<
1065   "only enumeration types have underlying types">;
1066 def err_incomplete_type_no_underlying_type : Error<
1067   "an incomplete enumeration type has no underlying type yet">;
1068
1069 // C++0x delegating constructors
1070 def err_delegation_0x_only : Error<
1071   "delegating constructors are permitted only in C++0x">;
1072 def err_delegating_initializer_alone : Error<
1073   "an initializer for a delegating constructor must appear alone">;
1074 def warn_delegating_ctor_cycle : Warning<
1075   "constructor for %0 creates a delegation cycle">, DefaultError,
1076   InGroup<DelegatingCtorCycles>;
1077 def note_it_delegates_to : Note<
1078   "it delegates to">, InGroup<DelegatingCtorCycles>;
1079 def note_which_delegates_to : Note<
1080   "which delegates to">, InGroup<DelegatingCtorCycles>;
1081 def err_delegating_codegen_not_implemented : Error<
1082   "code generation for delegating constructors not implemented">;
1083
1084 // C++0x range-based for loop
1085 def err_for_range_decl_must_be_var : Error<
1086   "for range declaration must declare a variable">;
1087 def err_for_range_storage_class : Error<
1088   "loop variable %0 may not be declared %select{'extern'|'static'|"
1089   "'__private_extern__'|'auto'|'register'|'constexpr'}1">;
1090 def err_type_defined_in_for_range : Error<
1091   "types may not be defined in a for range declaration">;
1092 def err_for_range_deduction_failure : Error<
1093   "cannot use type %0 as a range">;
1094 def err_for_range_incomplete_type : Error<
1095   "cannot use incomplete type %0 as a range">;
1096 def err_for_range_iter_deduction_failure : Error<
1097   "cannot use type %0 as an iterator">;
1098 def err_for_range_member_begin_end_mismatch : Error<
1099   "range type %0 has '%select{begin|end}1' member but no '%select{end|begin}1' member">;
1100 def err_for_range_begin_end_types_differ : Error<
1101   "'begin' and 'end' must return the same type (got %0 and %1)">;
1102 def note_for_range_type : Note<"range has type %0">;
1103 def note_for_range_begin_end : Note<
1104   "selected '%select{begin|end}0' %select{function|template }1%2 with iterator type %3">;
1105   
1106 // Objective-C++
1107 def err_objc_decls_may_only_appear_in_global_scope : Error<
1108   "Objective-C declarations may only appear in global scope">;
1109 def err_nsobject_attribute : Error<
1110   "__attribute ((NSObject)) is for pointer types only">;
1111
1112 // Attributes
1113 def err_attribute_can_be_applied_only_to_symbol_declaration : Error<
1114   "%0 attribute can be applied only to symbol declaration">;
1115 def err_attributes_are_not_compatible : Error<
1116   "%0 and %1 attributes are not compatible">;
1117 def err_attribute_wrong_number_arguments : Error<
1118   "attribute %plural{0:takes no arguments|1:takes one argument|"
1119   ":requires exactly %0 arguments}0">;
1120 def err_attribute_too_many_arguments : Error<
1121   "attribute takes no more than %0 argument%s0">;
1122 def err_iboutletcollection_type : Error<
1123   "invalid type %0 as argument of iboutletcollection attribute">;
1124 def err_iboutletcollection_object_type : Error<
1125   "%select{ivar|property}1 with iboutletcollection attribute must "
1126   "have object type (invalid %0)">;
1127 def err_attribute_missing_parameter_name : Error<
1128   "attribute requires unquoted parameter">;
1129 def err_attribute_invalid_vector_type : Error<"invalid vector element type %0">;
1130 def err_attribute_bad_neon_vector_size : Error<
1131   "Neon vector size must be 64 or 128 bits">;
1132 def err_attribute_argument_not_int : Error<
1133   "'%0' attribute requires integer constant">;
1134 def err_attribute_argument_outof_range : Error<
1135   "init_priority attribute requires integer constant between "
1136   "101 and 65535 inclusive">;
1137 def err_init_priority_object_attr : Error<
1138   "can only use 'init_priority' attribute on file-scope definitions "
1139   "of objects of class type">;
1140 def err_attribute_argument_n_not_int : Error<
1141   "'%0' attribute requires parameter %1 to be an integer constant">;
1142 def err_attribute_argument_n_not_string : Error<
1143   "'%0' attribute requires parameter %1 to be a string">;
1144 def err_attribute_argument_out_of_bounds : Error<
1145   "'%0' attribute parameter %1 is out of bounds">;
1146 def err_attribute_requires_objc_interface : Error<
1147   "attribute may only be applied to an Objective-C interface">;
1148 def err_attribute_uuid_malformed_guid : Error<
1149   "uuid attribute contains a malformed GUID">;
1150 def warn_nonnull_pointers_only : Warning<
1151   "nonnull attribute only applies to pointer arguments">;
1152 def err_attribute_invalid_implicit_this_argument : Error<
1153   "'%0' attribute is invalid for the implicit this argument">;
1154 def err_ownership_type : Error<
1155   "%0 attribute only applies to %1 arguments">;
1156 def err_format_strftime_third_parameter : Error<
1157   "strftime format attribute requires 3rd parameter to be 0">;
1158 def err_format_attribute_requires_variadic : Error<
1159   "format attribute requires variadic function">;
1160 def err_format_attribute_not : Error<"format argument not %0">;
1161 def err_format_attribute_result_not : Error<"function does not return %0">;
1162 def err_format_attribute_implicit_this_format_string : Error<
1163   "format attribute cannot specify the implicit this argument as the format "
1164   "string">;
1165 def warn_unknown_method_family : Warning<"unrecognized method family">;
1166 def err_init_method_bad_return_type : Error<
1167   "init methods must return an object pointer type, not %0">;
1168 def err_attribute_invalid_size : Error<
1169   "vector size not an integral multiple of component size">;
1170 def err_attribute_zero_size : Error<"zero vector size">;
1171 def err_typecheck_vector_not_convertable : Error<
1172   "can't convert between vector values of different size (%0 and %1)">;
1173 def err_typecheck_ext_vector_not_typedef : Error<
1174   "ext_vector_type only applies to types, not variables">;
1175 def err_unsupported_vector_size : Error<
1176   "unsupported type %0 for vector_size attribute, please use on typedef">;
1177 def err_ext_vector_component_exceeds_length : Error<
1178   "vector component access exceeds type %0">;
1179 def err_ext_vector_component_name_illegal : Error<
1180   "illegal vector component name '%0'">;
1181 def err_attribute_address_space_not_int : Error<
1182   "address space attribute requires an integer constant">;
1183 def err_attribute_address_space_negative : Error<
1184   "address space is negative">;
1185 def err_attribute_address_space_too_high : Error<
1186   "address space is larger than the maximum supported (%0)">;
1187 def err_attribute_address_multiple_qualifiers : Error<
1188   "multiple address spaces specified for type">;
1189 def err_as_qualified_auto_decl : Error<
1190   "automatic variable qualified with an address space">;
1191 def err_arg_with_address_space : Error<
1192   "parameter may not be qualified with an address space">;
1193 def err_attr_objc_ownership_bad_type : Error<
1194   "the type %0 cannot be retained">;
1195 def err_attr_objc_ownership_redundant : Error<
1196   "the type %0 already has retainment attributes set on it">;
1197 def err_attribute_not_string : Error<
1198   "argument to %0 attribute was not a string literal">;
1199 def err_attribute_section_invalid_for_target : Error<
1200   "argument to 'section' attribute is not valid for this target: %0">;
1201 def err_attribute_section_local_variable : Error<
1202   "'section' attribute is not valid on local variables">;
1203 def err_attribute_aligned_not_power_of_two : Error<
1204   "requested alignment is not a power of 2">;
1205 def warn_redeclaration_without_attribute_prev_attribute_ignored : Warning<
1206   "'%0' redeclared without %1 attribute: previous %1 ignored">;
1207 def warn_attribute_ignored : Warning<"%0 attribute ignored">;
1208 def warn_unknown_attribute_ignored : Warning<
1209   "unknown attribute %0 ignored">, InGroup<UnknownAttributes>;
1210 def warn_attribute_precede_definition : Warning<
1211   "attribute declaration must precede definition">;
1212 def warn_attribute_void_function_method : Warning<
1213   "attribute %0 cannot be applied to "
1214   "%select{functions|Objective-C method}1 without return value">;
1215 def warn_attribute_weak_on_field : Warning<
1216   "__weak attribute cannot be specified on a field declaration">;
1217 def warn_gc_attribute_weak_on_local : Warning<
1218   "Objective-C GC does not allow weak variables on the stack">;
1219 def warn_attribute_weak_on_local : Warning<
1220   "__weak attribute cannot be specified on an automatic variable">;
1221 def warn_weak_identifier_undeclared : Warning<
1222   "weak identifier %0 never declared">;
1223 def err_attribute_weak_static : Error<
1224   "weak declaration cannot have internal linkage">;
1225 def warn_attribute_weak_import_invalid_on_definition : Warning<
1226   "'weak_import' attribute cannot be specified on a definition">;
1227 def err_attribute_weakref_not_static : Error<
1228   "weakref declaration must have internal linkage">;
1229 def err_attribute_weakref_not_global_context : Error<
1230   "weakref declaration of '%0' must be in a global context">;
1231 def err_attribute_weakref_without_alias : Error<
1232   "weakref declaration of '%0' must also have an alias attribute">;
1233 def err_alias_not_supported_on_darwin : Error <
1234   "only weak aliases are supported on darwin">;
1235 def warn_attribute_wrong_decl_type : Warning<
1236   "%0 attribute only applies to %select{functions|unions|"
1237   "variables and functions|functions and methods|parameters|"
1238   "parameters and methods|functions, methods and blocks|"
1239   "classes and virtual methods|functions, methods, and parameters|"
1240   "classes|virtual methods|class members|variables|methods|"
1241   "variables, functions and labels}1">;
1242 def err_attribute_wrong_decl_type : Error<
1243   "%0 attribute only applies to %select{functions|unions|"
1244   "variables and functions|functions and methods|parameters|"
1245   "parameters and methods|functions, methods and blocks|"
1246   "classes and virtual methods|functions, methods, and parameters|"
1247   "classes|virtual methods|class members|variables|methods}1">;
1248 def warn_function_attribute_wrong_type : Warning<
1249   "'%0' only applies to function types; type here is %1">;
1250 def warn_pointer_attribute_wrong_type : Warning<
1251   "'%0' only applies to pointer types; type here is %1">;
1252 def warn_objc_object_attribute_wrong_type : Warning<
1253   "'%0' only applies to objective-c object or block pointer types; type here is %1">;
1254 def warn_gnu_inline_attribute_requires_inline : Warning<
1255   "'gnu_inline' attribute requires function to be marked 'inline',"
1256   " attribute ignored">;
1257 def err_attribute_vecreturn_only_vector_member : Error<
1258   "the vecreturn attribute can only be used on a class or structure with one member, which must be a vector">;
1259 def err_attribute_vecreturn_only_pod_record : Error<
1260   "the vecreturn attribute can only be used on a POD (plain old data) class or structure (i.e. no virtual functions)">;
1261 def err_cconv_change : Error<
1262   "function declared '%0' here was previously declared "
1263   "%select{'%2'|without calling convention}1">;
1264 def err_cconv_knr : Error<
1265   "function with no prototype cannot use %0 calling convention">;
1266 def err_cconv_varargs : Error<
1267   "variadic function cannot use %0 calling convention">;
1268 def err_regparm_mismatch : Error<"function declared with with regparm(%0) "
1269   "attribute was previously declared "
1270   "%plural{0:without the regparm|:with the regparm(%1)}1 attribute">;
1271 def err_objc_precise_lifetime_bad_type : Error<
1272   "objc_precise_lifetime only applies to retainable types; type here is %0">;
1273 def warn_objc_precise_lifetime_meaningless : Error<
1274   "objc_precise_lifetime is not meaningful for "
1275   "%select{__unsafe_unretained|__autoreleasing}0 objects">;
1276 def warn_label_attribute_not_unused : Warning<
1277   "The only valid attribute for labels is 'unused'">;
1278 def err_invalid_pcs : Error<"Invalid PCS type">;
1279
1280 // Availability attribute
1281 def warn_availability_unknown_platform : Warning<
1282   "unknown platform %0 in availability macro">;
1283 def warn_availability_version_ordering : Warning<
1284   "feature cannot be %select{introduced|deprecated|obsoleted}0 in %1 version "
1285   "%2 before it was %select{introduced|deprecated|obsoleted}3 in version %4; "
1286   "attribute ignored">;
1287
1288 def warn_impcast_vector_scalar : Warning<
1289   "implicit conversion turns vector to scalar: %0 to %1">,
1290   InGroup<DiagGroup<"conversion">>, DefaultIgnore;
1291 def warn_impcast_complex_scalar : Warning<
1292   "implicit conversion discards imaginary component: %0 to %1">,
1293   InGroup<DiagGroup<"conversion">>, DefaultIgnore;
1294 def warn_impcast_float_precision : Warning<
1295   "implicit conversion loses floating-point precision: %0 to %1">,
1296   InGroup<DiagGroup<"conversion">>, DefaultIgnore;
1297 def warn_impcast_float_integer : Warning<
1298   "implicit conversion turns floating-point number into integer: %0 to %1">,
1299   InGroup<DiagGroup<"conversion">>, DefaultIgnore;
1300 def warn_impcast_integer_sign : Warning<
1301   "implicit conversion changes signedness: %0 to %1">,
1302   InGroup<DiagGroup<"sign-conversion">>, DefaultIgnore;
1303 def warn_impcast_integer_sign_conditional : Warning<
1304   "operand of ? changes signedness: %0 to %1">,
1305   InGroup<DiagGroup<"sign-conversion">>, DefaultIgnore;
1306 def warn_impcast_integer_precision : Warning<
1307   "implicit conversion loses integer precision: %0 to %1">,
1308   InGroup<DiagGroup<"conversion">>, DefaultIgnore;
1309 def warn_impcast_integer_64_32 : Warning<
1310   "implicit conversion loses integer precision: %0 to %1">,
1311   InGroup<DiagGroup<"shorten-64-to-32">>, DefaultIgnore;
1312 def warn_impcast_integer_precision_constant : Warning<
1313   "implicit conversion from %2 to %3 changes value from %0 to %1">,
1314   InGroup<DiagGroup<"constant-conversion">>;
1315 def warn_impcast_bitfield_precision_constant : Warning<
1316   "implicit truncation from %2 to bitfield changes value from %0 to %1">,
1317   InGroup<DiagGroup<"constant-conversion">>;
1318 def warn_impcast_literal_float_to_integer : Warning<
1319   "implicit conversion turns literal floating-point number into integer: "
1320   "%0 to %1">,
1321   InGroup<DiagGroup<"literal-conversion">>, DefaultIgnore;
1322 def note_fix_integral_float_as_integer : Note<
1323   "this can be rewritten as an integer literal with the exact same value">;
1324 def warn_impcast_different_enum_types : Warning<
1325   "implicit conversion from enumeration type %0 to different enumeration type "
1326   "%1">, InGroup<DiagGroup<"conversion">>;
1327 def warn_impcast_bool_to_null_pointer : Warning<
1328     "initialization of pointer of type %0 to NULL from a constant boolean "
1329     "expression">, InGroup<BoolConversions>;
1330 def warn_impcast_null_pointer_to_integer : Warning<
1331     "implicit conversion of NULL constant to integer">,
1332     InGroup<DiagGroup<"conversion">>, DefaultIgnore;
1333
1334 def warn_cast_align : Warning<
1335   "cast from %0 to %1 increases required alignment from %2 to %3">,
1336   InGroup<CastAlign>, DefaultIgnore;
1337
1338 def warn_attribute_ignored_for_field_of_type : Warning<
1339   "%0 attribute ignored for field of type %1">;
1340 def warn_transparent_union_attribute_field_size_align : Warning<
1341   "%select{alignment|size}0 of field %1 (%2 bits) does not match the "
1342   "%select{alignment|size}0 of the first field in transparent union; "
1343   "transparent_union attribute ignored">;
1344 def note_transparent_union_first_field_size_align : Note<
1345   "%select{alignment|size}0 of first field is %1 bits">;
1346 def warn_transparent_union_attribute_not_definition : Warning<
1347   "transparent_union attribute can only be applied to a union definition; "
1348   "attribute ignored">;
1349 def warn_transparent_union_attribute_floating : Warning<
1350   "first field of a transparent union cannot have %select{floating point|"
1351   "vector}0 type %1; transparent_union attribute ignored">;
1352 def warn_transparent_union_attribute_zero_fields : Warning<
1353   "transparent union definition must contain at least one field; "
1354   "transparent_union attribute ignored">;
1355 def warn_attribute_type_not_supported : Warning<
1356   "'%0' attribute argument not supported: %1">;
1357 def warn_attribute_unknown_visibility : Warning<"unknown visibility '%0'">;
1358 def err_unknown_machine_mode : Error<"unknown machine mode %0">;
1359 def err_unsupported_machine_mode : Error<"unsupported machine mode %0">;
1360 def err_mode_not_primitive : Error<
1361   "mode attribute only supported for integer and floating-point types">;
1362 def err_mode_wrong_type : Error<
1363   "type of machine mode does not match type of base type">;
1364 def err_attr_wrong_decl : Error<
1365   "'%0' attribute invalid on this declaration, requires typedef or value">;
1366 def warn_attribute_nonnull_no_pointers : Warning<
1367   "'nonnull' attribute applied to function with no pointer arguments">;
1368 def warn_attribute_malloc_pointer_only : Warning<
1369   "'malloc' attribute only applies to functions returning a pointer type">;
1370 def warn_transparent_union_nonpointer : Warning<
1371   "'transparent_union' attribute support incomplete; only supported for "
1372   "pointer unions">;
1373 def warn_attribute_sentinel_named_arguments : Warning<
1374   "'sentinel' attribute requires named arguments">;
1375 def warn_attribute_sentinel_not_variadic : Warning<
1376   "'sentinel' attribute only supported for variadic %select{functions|blocks}0">;
1377 def err_attribute_sentinel_less_than_zero : Error<
1378   "'sentinel' parameter 1 less than zero">;
1379 def err_attribute_sentinel_not_zero_or_one : Error<
1380   "'sentinel' parameter 2 not 0 or 1">;
1381 def err_attribute_cleanup_arg_not_found : Error<
1382   "'cleanup' argument %0 not found">;
1383 def err_attribute_cleanup_arg_not_function : Error<
1384   "'cleanup' argument %0 is not a function">;
1385 def err_attribute_cleanup_func_must_take_one_arg : Error<
1386   "'cleanup' function %0 must take 1 parameter">;
1387 def err_attribute_cleanup_func_arg_incompatible_type : Error<
1388   "'cleanup' function %0 parameter has type %1 which is incompatible with "
1389   "type %2">;
1390 def err_attribute_regparm_wrong_platform : Error<
1391   "'regparm' is not valid on this platform">;
1392 def err_attribute_regparm_invalid_number : Error<
1393   "'regparm' parameter must be between 0 and %0 inclusive">;
1394
1395
1396 // Clang-Specific Attributes
1397 def warn_attribute_iboutlet : Warning<
1398   "%0 attribute can only be applied to instance variables or properties">;
1399 def warn_attribute_ibaction: Warning<
1400   "ibaction attribute can only be applied to Objective-C instance methods">;
1401 def err_attribute_overloadable_not_function : Error<
1402   "'overloadable' attribute can only be applied to a function">;
1403 def err_attribute_overloadable_missing : Error<
1404   "%select{overloaded function|redeclaration of}0 %1 must have the "
1405   "'overloadable' attribute">;
1406 def note_attribute_overloadable_prev_overload : Note<
1407   "previous overload of function is here">;
1408 def err_attribute_overloadable_no_prototype : Error<
1409   "'overloadable' function %0 must have a prototype">;
1410 def warn_ns_attribute_wrong_return_type : Warning<
1411   "%0 attribute only applies to %select{functions|methods}1 that "
1412   "return %select{an Objective-C object|a pointer}2">;
1413 def warn_ns_attribute_wrong_parameter_type : Warning<
1414   "%0 attribute only applies to %select{Objective-C object|pointer}1 "
1415   "parameters">;
1416
1417 // Function Parameter Semantic Analysis.
1418 def err_param_with_void_type : Error<"argument may not have 'void' type">;
1419 def err_void_only_param : Error<
1420   "'void' must be the first and only parameter if specified">;
1421 def err_void_param_qualified : Error<
1422   "'void' as parameter must not have type qualifiers">;
1423 def err_ident_list_in_fn_declaration : Error<
1424   "a parameter list without types is only allowed in a function definition">;
1425 def ext_param_not_declared : Extension<
1426   "parameter %0 was not declared, defaulting to type 'int'">;
1427 def err_param_typedef_of_void : Error<
1428   "empty parameter list defined with a %select{typedef|type alias}0 of 'void' not allowed%select{ in C++|}0">;
1429 def err_param_default_argument : Error<
1430   "C does not support default arguments">;
1431 def err_param_default_argument_redefinition : Error<
1432   "redefinition of default argument">;
1433 def warn_param_default_argument_redefinition : ExtWarn<
1434   "redefinition of default argument">;
1435 def err_param_default_argument_missing : Error<
1436   "missing default argument on parameter">;
1437 def err_param_default_argument_missing_name : Error<
1438   "missing default argument on parameter %0">;
1439 def err_param_default_argument_references_param : Error<
1440   "default argument references parameter %0">;
1441 def err_param_default_argument_references_local : Error<
1442   "default argument references local variable %0 of enclosing function">;
1443 def err_param_default_argument_references_this : Error<
1444   "default argument references 'this'">;
1445 def err_param_default_argument_nonfunc : Error<
1446   "default arguments can only be specified for parameters in a function "
1447   "declaration">;
1448 def err_param_default_argument_template_redecl : Error<
1449   "default arguments cannot be added to a function template that has already "
1450   "been declared">;
1451 def err_param_default_argument_member_template_redecl : Error<
1452   "default arguments cannot be added to an out-of-line definition of a member "
1453   "of a %select{class template|class template partial specialization|nested "
1454   "class in a template}0">;
1455 def err_uninitialized_member_for_assign : Error<
1456   "cannot define the implicit default assignment operator for %0, because "
1457   "non-static %select{reference|const}1 member %2 can't use default "
1458   "assignment operator">;
1459 def note_first_required_here : Note<
1460   "synthesized method is first required here">;
1461 def err_uninitialized_member_in_ctor : Error<
1462   "%select{|implicit default }0constructor for %1 must explicitly initialize "
1463   "the %select{reference|const}2 member %3">;
1464 def warn_default_arg_makes_ctor_special : Warning<
1465   "addition of default argument on redeclaration makes this constructor a "
1466   "%select{default|copy|move}0 constructor">, InGroup<DefaultArgSpecialMember>;
1467 def note_previous_declaration_special : Note<
1468   // The ERRORs are in hopes that if they occur, they'll get reported.
1469   "previous declaration was %select{*ERROR*|a copy constructor|a move "
1470   "constructor|*ERROR*|*ERROR*|*ERROR*|not a special member function}0">;
1471
1472 def err_use_of_default_argument_to_function_declared_later : Error<
1473   "use of default argument to function %0 that is declared later in class %1">;
1474 def note_default_argument_declared_here : Note<
1475   "default argument declared here">;
1476
1477 def ext_param_promoted_not_compatible_with_prototype : ExtWarn<
1478   "promoted type %0 of K&R function parameter is not compatible with the "
1479   "parameter type %1 declared in a previous prototype">;
1480
1481
1482 // C++ Overloading Semantic Analysis.
1483 def err_ovl_diff_return_type : Error<
1484   "functions that differ only in their return type cannot be overloaded">;
1485 def err_ovl_static_nonstatic_member : Error<
1486   "static and non-static member functions with the same parameter types "
1487   "cannot be overloaded">;
1488
1489 def err_ovl_no_viable_function_in_call : Error<
1490   "no matching function for call to %0">;
1491 def err_ovl_no_viable_member_function_in_call : Error<
1492   "no matching member function for call to %0">;
1493 def err_ovl_ambiguous_call : Error<
1494   "call to %0 is ambiguous">;
1495 def err_ovl_deleted_call : Error<
1496   "call to %select{unavailable|deleted}0 function %1%2">;
1497 def err_ovl_ambiguous_member_call : Error<
1498   "call to member function %0 is ambiguous">;
1499 def err_ovl_deleted_member_call : Error<
1500   "call to %select{unavailable|deleted}0 member function %1%2">;
1501 def note_ovl_too_many_candidates : Note<
1502     "remaining %0 candidate%s0 omitted; "
1503     "pass -fshow-overloads=all to show them">;
1504 def note_ovl_candidate : Note<"candidate "
1505     "%select{function|function|constructor|"
1506     "function |function |constructor |"
1507     "is the implicit default constructor|"
1508     "is the implicit copy constructor|"
1509     "is the implicit move constructor|"
1510     "is the implicit copy assignment operator|"
1511     "is the implicit move assignment operator|"
1512     "is an inherited constructor}0%1">;
1513
1514 def note_ovl_candidate_inherited_constructor : Note<"inherited from here">;
1515 def note_ovl_candidate_bad_deduction : Note<
1516     "candidate template ignored: failed template argument deduction">;
1517 def note_ovl_candidate_incomplete_deduction : Note<"candidate template ignored: "
1518     "couldn't infer template argument %0">;
1519 def note_ovl_candidate_inconsistent_deduction : Note<
1520     "candidate template ignored: deduced conflicting %select{types|values|"
1521     "templates}0 for parameter %1 (%2 vs. %3)">;
1522 def note_ovl_candidate_explicit_arg_mismatch_named : Note<
1523     "candidate template ignored: invalid explicitly-specified argument "
1524     "for template parameter %0">;
1525 def note_ovl_candidate_explicit_arg_mismatch_unnamed : Note<
1526     "candidate template ignored: invalid explicitly-specified argument "
1527     "for %ordinal0 template parameter">;
1528 def note_ovl_candidate_instantiation_depth : Note<
1529     "candidate template ignored: substitution exceeded maximum template "
1530     "instantiation depth">;
1531 def note_ovl_candidate_underqualified : Note<
1532     "candidate template ignored: can't deduce a type for %0 which would "
1533     "make %2 equal %1">;
1534 def note_ovl_candidate_substitution_failure : Note<
1535     "candidate template ignored: substitution failure %0">;
1536     
1537 // Note that we don't treat templates differently for this diagnostic.
1538 def note_ovl_candidate_arity : Note<"candidate "
1539     "%select{function|function|constructor|function|function|constructor|"
1540     "constructor (the implicit default constructor)|"
1541     "constructor (the implicit copy constructor)|"
1542     "constructor (the implicit move constructor)|"
1543     "function (the implicit copy assignment operator)|"
1544     "function (the implicit move assignment operator)|"
1545     "constructor (inherited)}0 %select{|template }1"
1546     "not viable: requires%select{ at least| at most|}2 %3 argument%s3, but %4 "
1547     "%plural{1:was|:were}4 provided">;
1548
1549 def note_ovl_candidate_deleted : Note<
1550     "candidate %select{function|function|constructor|"
1551     "function |function |constructor |"
1552     "constructor (the implicit default constructor)|"
1553     "constructor (the implicit copy constructor)|"
1554     "constructor (the implicit move constructor)|"
1555     "function (the implicit copy assignment operator)|"
1556     "function (the implicit move assignment operator)|"
1557     "constructor (inherited)}0%1 "
1558     "has been explicitly %select{made unavailable|deleted}2">;
1559
1560 // Giving the index of the bad argument really clutters this message, and
1561 // it's relatively unimportant because 1) it's generally obvious which
1562 // argument(s) are of the given object type and 2) the fix is usually
1563 // to complete the type, which doesn't involve changes to the call line
1564 // anyway.  If people complain, we can change it.
1565 def note_ovl_candidate_bad_conv_incomplete : Note<"candidate "
1566     "%select{function|function|constructor|"
1567     "function |function |constructor |"
1568     "constructor (the implicit default constructor)|"
1569     "constructor (the implicit copy constructor)|"
1570     "constructor (the implicit move constructor)|"
1571     "function (the implicit copy assignment operator)|"
1572     "function (the implicit move assignment operator)|"
1573     "constructor (inherited)}0%1 "
1574     "not viable: cannot convert argument of incomplete type %2 to %3">;
1575 def note_ovl_candidate_bad_overload : Note<"candidate "
1576     "%select{function|function|constructor|"
1577     "function |function |constructor |"
1578     "constructor (the implicit default constructor)|"
1579     "constructor (the implicit copy constructor)|"
1580     "constructor (the implicit move constructor)|"
1581     "function (the implicit copy assignment operator)|"
1582     "function (the implicit move assignment operator)|"
1583     "constructor (inherited)}0%1"
1584     " not viable: no overload of %3 matching %2 for %ordinal4 argument">;
1585 def note_ovl_candidate_bad_conv : Note<"candidate "
1586     "%select{function|function|constructor|"
1587     "function |function |constructor |"
1588     "constructor (the implicit default constructor)|"
1589     "constructor (the implicit copy constructor)|"
1590     "constructor (the implicit move constructor)|"
1591     "function (the implicit copy assignment operator)|"
1592     "function (the implicit move assignment operator)|"
1593     "constructor (inherited)}0%1"
1594     " not viable: no known conversion from %2 to %3 for "
1595     "%select{%ordinal5 argument|object argument}4">;
1596 def note_ovl_candidate_bad_addrspace : Note<"candidate "
1597     "%select{function|function|constructor|"
1598     "function |function |constructor |"
1599     "constructor (the implicit default constructor)|"
1600     "constructor (the implicit copy constructor)|"
1601     "constructor (the implicit move constructor)|"
1602     "function (the implicit copy assignment operator)|"
1603     "function (the implicit move assignment operator)|"
1604     "constructor (inherited)}0%1 not viable: "
1605     "%select{%ordinal6|'this'}5 argument (%2) is in "
1606     "address space %3, but parameter must be in address space %4">;
1607 def note_ovl_candidate_bad_gc : Note<"candidate "
1608     "%select{function|function|constructor|"
1609     "function |function |constructor |"
1610     "constructor (the implicit default constructor)|"
1611     "constructor (the implicit copy constructor)|"
1612     "constructor (the implicit move constructor)|"
1613     "function (the implicit copy assignment operator)|"
1614     "function (the implicit move assignment operator)|"
1615     "constructor (inherited)}0%1 not viable: "
1616     "%select{%ordinal6|'this'}5 argument (%2) has %select{no|__weak|__strong}3 "
1617     "ownership, but parameter has %select{no|__weak|__strong}4 ownership">;
1618 def note_ovl_candidate_bad_ownership : Note<"candidate "
1619     "%select{function|function|constructor|"
1620     "function |function |constructor |"
1621     "constructor (the implicit default constructor)|"
1622     "constructor (the implicit copy constructor)|"
1623     "function (the implicit copy assignment operator)|"
1624     "constructor (inherited)}0%1 not viable: "
1625     "%select{%ordinal6|'this'}5 argument (%2) has "
1626     "%select{no|__unsafe_unretained|__strong|__weak|__autoreleasing}3 ownership,"
1627     " but parameter has %select{no|__unsafe_unretained|__strong|__weak|"
1628     "__autoreleasing}4 ownership">;
1629 def note_ovl_candidate_bad_cvr_this : Note<"candidate "
1630     "%select{|function|||function||||"
1631     "function (the implicit copy assignment operator)|}0 not viable: "
1632     "'this' argument has type %2, but method is not marked "
1633     "%select{const|restrict|const or restrict|volatile|const or volatile|"
1634     "volatile or restrict|const, volatile, or restrict}3">;
1635 def note_ovl_candidate_bad_cvr : Note<"candidate "
1636     "%select{function|function|constructor|"
1637     "function |function |constructor |"
1638     "constructor (the implicit default constructor)|"
1639     "constructor (the implicit copy constructor)|"
1640     "constructor (the implicit move constructor)|"
1641     "function (the implicit copy assignment operator)|"
1642     "function (the implicit move assignment operator)|"
1643     "constructor (inherited)}0%1 not viable: "
1644     "%ordinal4 argument (%2) would lose "
1645     "%select{const|restrict|const and restrict|volatile|const and volatile|"
1646     "volatile and restrict|const, volatile, and restrict}3 qualifier"
1647     "%select{||s||s|s|s}3">;
1648 def note_ovl_candidate_bad_base_to_derived_conv : Note<"candidate "
1649     "%select{function|function|constructor|"
1650     "function |function |constructor |"
1651     "constructor (the implicit default constructor)|"
1652     "constructor (the implicit copy constructor)|"
1653     "constructor (the implicit move constructor)|"
1654     "function (the implicit copy assignment operator)|"
1655     "function (the implicit move assignment operator)|"
1656     "constructor (inherited)}0%1"
1657     " not viable: cannot %select{convert from|convert from|bind}2 "
1658     "%select{base class pointer|superclass|base class object of type}2 %3 to "
1659     "%select{derived class pointer|subclass|derived class reference}2 %4 for "
1660     "%ordinal5 argument">;
1661
1662 def note_ambiguous_type_conversion: Note<
1663     "because of ambiguity in conversion of %0 to %1">;
1664 def note_ovl_builtin_binary_candidate : Note<
1665     "built-in candidate %0">;
1666 def note_ovl_builtin_unary_candidate : Note<
1667     "built-in candidate %0">;
1668 def err_ovl_no_viable_function_in_init : Error<
1669   "no matching constructor for initialization of %0">;
1670 def err_ovl_no_conversion_in_cast : Error<
1671   "cannot convert %1 to %2 without a conversion operator">;
1672 def err_ovl_no_viable_conversion_in_cast : Error<
1673   "no matching conversion for %select{|static_cast|reinterpret_cast|"
1674   "dynamic_cast|C-style cast|functional-style cast}0 from %1 to %2">;
1675 def err_ovl_ambiguous_conversion_in_cast : Error<
1676   "ambiguous conversion for %select{|static_cast|reinterpret_cast|"
1677   "dynamic_cast|C-style cast|functional-style cast}0 from %1 to %2">;
1678 def err_ovl_deleted_conversion_in_cast : Error<
1679   "%select{|static_cast|reinterpret_cast|dynamic_cast|C-style cast|"
1680   "functional-style cast}0 from %1 to %2 uses deleted function">;
1681 def err_ovl_ambiguous_init : Error<"call to constructor of %0 is ambiguous">;
1682 def err_ref_init_ambiguous : Error<
1683   "reference initialization of type %0 with initializer of type %1 is ambiguous">;
1684 def err_ovl_deleted_init : Error<
1685   "call to %select{unavailable|deleted}0 constructor of %1">;
1686 def err_ovl_ambiguous_oper_unary : Error<
1687   "use of overloaded operator '%0' is ambiguous (operand type %1)">;
1688 def err_ovl_ambiguous_oper_binary : Error<
1689   "use of overloaded operator '%0' is ambiguous (with operand types %1 and %2)">;
1690 def err_ovl_no_viable_oper : Error<"no viable overloaded '%0'">;
1691 def err_ovl_deleted_oper : Error<
1692   "overload resolution selected %select{unavailable|deleted}0 operator '%1'%2">;
1693 def err_ovl_no_viable_subscript :
1694     Error<"no viable overloaded operator[] for type %0">;
1695 def err_ovl_no_oper :
1696     Error<"type %0 does not provide a %select{subscript|call}1 operator">;
1697 def err_ovl_unresolvable :
1698     Error<"cannot resolve overloaded function %0 from context">;
1699   
1700
1701 def err_ovl_no_viable_object_call : Error<
1702   "no matching function for call to object of type %0">;
1703 def err_ovl_ambiguous_object_call : Error<
1704   "call to object of type %0 is ambiguous">;
1705 def err_ovl_deleted_object_call : Error<
1706   "call to %select{unavailable|deleted}0 function call operator in type %1%2">;
1707 def note_ovl_surrogate_cand : Note<"conversion candidate of type %0">;
1708 def err_member_call_without_object : Error<
1709   "call to non-static member function without an object argument">;
1710
1711 // C++ Address of Overloaded Function
1712 def err_addr_ovl_no_viable : Error<
1713   "address of overloaded function %0 does not match required type %1">;
1714 def err_addr_ovl_ambiguous : Error<
1715   "address of overloaded function %0 is ambiguous">;
1716 def err_addr_ovl_not_func_ptrref : Error<
1717   "address of overloaded function %0 cannot be converted to type %1">;
1718 def err_addr_ovl_no_qualifier : Error<
1719   "can't form member pointer of type %0 without '&' and class name">;
1720   
1721 // C++ Template Declarations
1722 def err_template_param_shadow : Error<
1723   "declaration of %0 shadows template parameter">;
1724 def note_template_param_here : Note<"template parameter is declared here">;
1725 def warn_template_export_unsupported : Warning<
1726   "exported templates are unsupported">;
1727 def err_template_outside_namespace_or_class_scope : Error<
1728   "templates can only be declared in namespace or class scope">;
1729 def err_template_linkage : Error<"templates must have C++ linkage">;
1730 def err_template_typedef : Error<"a typedef cannot be a template">;
1731 def err_template_unnamed_class : Error<
1732   "cannot declare a class template with no name">;
1733 def err_template_param_list_different_arity : Error<
1734   "%select{too few|too many}0 template parameters in template "
1735   "%select{|template parameter }1redeclaration">;
1736 def note_template_param_list_different_arity : Note<
1737   "%select{too few|too many}0 template parameters in template template "
1738   "argument">;
1739 def note_template_prev_declaration : Note<
1740   "previous template %select{declaration|template parameter}0 is here">;
1741 def err_template_param_different_kind : Error<
1742   "template parameter has a different kind in template "
1743   "%select{|template parameter }0redeclaration">;
1744 def note_template_param_different_kind : Note<
1745   "template parameter has a different kind in template argument">;
1746   
1747 def err_template_nontype_parm_different_type : Error<
1748   "template non-type parameter has a different type %0 in template "
1749   "%select{|template parameter }1redeclaration">;
1750
1751 def note_template_nontype_parm_different_type : Note<
1752   "template non-type parameter has a different type %0 in template argument">;
1753 def note_template_nontype_parm_prev_declaration : Note<
1754   "previous non-type template parameter with type %0 is here">;
1755 def err_template_nontype_parm_bad_type : Error<
1756   "a non-type template parameter cannot have type %0">;
1757 def err_template_param_default_arg_redefinition : Error<
1758   "template parameter redefines default argument">;
1759 def note_template_param_prev_default_arg : Note<
1760   "previous default template argument defined here">;
1761 def err_template_param_default_arg_missing : Error<
1762   "template parameter missing a default argument">;
1763 def ext_template_parameter_default_in_function_template : ExtWarn<
1764   "default template arguments for a function template are a C++0x extension">,
1765   InGroup<CXX0x>;
1766 def err_template_parameter_default_template_member : Error<
1767   "cannot add a default template argument to the definition of a member of a "
1768   "class template">;
1769 def err_template_parameter_default_friend_template : Error<
1770   "default template argument not permitted on a friend template">;
1771 def err_template_template_parm_no_parms : Error<
1772   "template template parameter must have its own template parameters">;
1773
1774 def err_template_variable : Error<"variable %0 declared as a template">;
1775 def err_template_variable_noparams : Error<
1776   "extraneous 'template<>' in declaration of variable %0">;
1777 def err_template_tag_noparams : Error<
1778   "extraneous 'template<>' in declaration of %0 %1">;
1779 def err_template_decl_ref : Error<
1780   "cannot refer to class template %0 without a template argument list">;
1781
1782 // C++ Template Argument Lists
1783 def err_template_missing_args : Error<
1784   "use of class template %0 requires template arguments">;
1785 def err_template_arg_list_different_arity : Error<
1786   "%select{too few|too many}0 template arguments for "
1787   "%select{class template|function template|template template parameter"
1788   "|template}1 %2">;
1789 def note_template_decl_here : Note<"template is declared here">;
1790 def note_member_of_template_here : Note<"member is declared here">;
1791 def err_template_arg_must_be_type : Error<
1792   "template argument for template type parameter must be a type">;
1793 def err_template_arg_must_be_expr : Error<
1794   "template argument for non-type template parameter must be an expression">;
1795 def err_template_arg_nontype_ambig : Error<
1796   "template argument for non-type template parameter is treated as type %0">;
1797 def err_template_arg_must_be_template : Error<
1798   "template argument for template template parameter must be a class template%select{| or type alias template}0">;
1799 def ext_template_arg_local_type : ExtWarn<
1800   "template argument uses local type %0">, InGroup<LocalTypeTemplateArgs>;
1801 def ext_template_arg_unnamed_type : ExtWarn<
1802   "template argument uses unnamed type">, InGroup<UnnamedTypeTemplateArgs>;
1803 def note_template_unnamed_type_here : Note<
1804   "unnamed type used in template argument was declared here">;
1805 def err_template_arg_overload_type : Error<
1806   "template argument is the type of an unresolved overloaded function">;
1807 def err_template_arg_not_class_template : Error<
1808   "template argument does not refer to a class template or template "
1809   "template parameter">;
1810 def note_template_arg_refers_here_func : Note<
1811   "template argument refers to function template %0, here">;
1812 def err_template_arg_template_params_mismatch : Error<
1813   "template template argument has different template parameters than its "
1814   "corresponding template template parameter">;
1815 def err_template_arg_not_integral_or_enumeral : Error<
1816   "non-type template argument of type %0 must have an integral or enumeration"
1817   " type">;
1818 def err_template_arg_not_ice : Error<
1819   "non-type template argument of type %0 is not an integral constant "
1820   "expression">;
1821 def err_deduced_non_type_template_arg_type_mismatch : Error<
1822   "deduced non-type template argument does not have the same type as the "
1823   "its corresponding template parameter (%0 vs %1)">;
1824 def err_template_arg_not_convertible : Error<
1825   "non-type template argument of type %0 cannot be converted to a value "
1826   "of type %1">;
1827 def warn_template_arg_negative : Warning<
1828   "non-type template argument with value '%0' converted to '%1' for unsigned "
1829   "template parameter of type %2">, InGroup<Conversion>, DefaultIgnore;
1830 def warn_template_arg_too_large : Warning<
1831   "non-type template argument value '%0' truncated to '%1' for "
1832   "template parameter of type %2">, InGroup<Conversion>, DefaultIgnore;
1833 def err_template_arg_no_ref_bind : Error<
1834   "non-type template parameter of reference type %0 cannot bind to template "
1835   "argument of type %1">;
1836 def err_template_arg_ref_bind_ignores_quals : Error<
1837   "reference binding of non-type template parameter of type %0 to template "
1838   "argument of type %1 ignores qualifiers">;
1839 def err_template_arg_not_decl_ref : Error<
1840   "non-type template argument does not refer to any declaration">;
1841 def err_template_arg_not_object_or_func_form : Error<
1842   "non-type template argument does not directly refer to an object or "
1843   "function">;
1844 def err_template_arg_not_address_of : Error<
1845   "non-type template argument for template parameter of pointer type %0 must "
1846   "have its address taken">;
1847 def err_template_arg_address_of_non_pointer : Error<
1848   "address taken in non-type template argument for template parameter of "
1849   "reference type %0">;
1850 def err_template_arg_reference_var : Error<
1851   "non-type template argument of reference type %0 is not an object">;
1852 def err_template_arg_field : Error<
1853   "non-type template argument refers to non-static data member %0">;
1854 def err_template_arg_method : Error<
1855   "non-type template argument refers to non-static member function %0">;
1856 def err_template_arg_function_not_extern : Error<
1857   "non-template argument refers to function %0 with internal linkage">;
1858 def err_template_arg_object_not_extern : Error<
1859   "non-template argument refers to object %0 that does not have external "
1860   "linkage">;
1861 def note_template_arg_internal_object : Note<
1862   "non-template argument refers to %select{function|object}0 here">;
1863 def note_template_arg_refers_here : Note<"non-template argument refers here">;
1864 def err_template_arg_not_object_or_func : Error<
1865   "non-type template argument does not refer to an object or function">;
1866 def err_template_arg_not_pointer_to_member_form : Error<
1867   "non-type template argument is not a pointer to member constant">;
1868 def ext_template_arg_extra_parens : ExtWarn<
1869   "address non-type template argument cannot be surrounded by parentheses">;
1870 def err_pointer_to_member_type : Error<
1871   "invalid use of pointer to member type after %select{.*|->*}0">;
1872 def err_pointer_to_member_call_drops_quals : Error<
1873   "call to pointer to member function of type %0 drops '%1' qualifier%s2">;
1874 def err_pointer_to_member_oper_value_classify: Error<
1875   "pointer-to-member function type %0 can only be called on an "
1876   "%select{rvalue|lvalue}1">;
1877
1878 // C++ template specialization
1879 def err_template_spec_unknown_kind : Error<
1880   "can only provide an explicit specialization for a class template, function "
1881   "template, or a member function, static data member, or member class of a "
1882   "class template">;
1883 def note_specialized_entity : Note<
1884   "explicitly specialized declaration is here">;
1885 def err_template_spec_decl_function_scope : Error<
1886   "explicit specialization of %0 in function scope">;
1887 def err_template_spec_decl_class_scope : Error<
1888   "explicit specialization of %0 in class scope">;
1889 def err_template_spec_decl_friend : Error<
1890   "cannot declare an explicit specialization in a friend">;
1891 def err_template_spec_decl_out_of_scope_global : Error<
1892   "%select{class template|class template partial|function template|member "
1893   "function|static data member|member class}0 specialization of %1 must "
1894   "originally be declared in the global scope">;
1895 def ext_template_spec_decl_out_of_scope_global : ExtWarn<
1896   "%select{class template|class template partial|function template|member "
1897   "function|static data member|member class}0 specialization of %1 must "
1898   "originally be declared in the global scope; accepted as a C++0x extension">,
1899   InGroup<CXX0x>;
1900 def err_template_spec_decl_out_of_scope : Error<
1901   "%select{class template|class template partial|function template|member "
1902   "function|static data member|member class}0 specialization of %1 must "
1903   "originally be declared in namespace %2">;
1904 def ext_template_spec_decl_out_of_scope : ExtWarn<
1905   "%select{class template|class template partial|function template|member "
1906   "function|static data member|member class}0 specialization of %1 must "
1907   "originally be declared in namespace %2; accepted as a C++0x extension">,
1908   InGroup<CXX0x>;
1909 def err_template_spec_redecl_out_of_scope : Error<
1910   "%select{class template|class template partial|function template|member "
1911   "function|static data member|member class}0 specialization of %1 not in a "
1912   "namespace enclosing %2">;
1913 def err_template_spec_redecl_global_scope : Error<
1914   "%select{class template|class template partial|function template|member "
1915   "function|static data member|member class}0 specialization of %1 must occur "
1916   "at global scope">;
1917 def err_spec_member_not_instantiated : Error<
1918   "specialization of member %q0 does not specialize an instantiated member">;
1919 def note_specialized_decl : Note<"attempt to specialize declaration here">;
1920 def err_specialization_after_instantiation : Error<
1921   "explicit specialization of %0 after instantiation">;
1922 def note_instantiation_required_here : Note<
1923   "%select{implicit|explicit}0 instantiation first required here">;
1924 def err_template_spec_friend : Error<
1925   "template specialization declaration cannot be a friend">;
1926 def err_template_spec_default_arg : Error<
1927   "default argument not permitted on an explicit "
1928   "%select{instantiation|specialization}0 of function %1">;
1929 def err_not_class_template_specialization : Error<
1930   "cannot specialize a %select{dependent template|template template "
1931   "parameter}0">;
1932 def err_function_specialization_in_class : Error<
1933   "cannot specialize a function %0 within class scope">;
1934 def ext_explicit_specialization_storage_class : ExtWarn<
1935   "explicit specialization cannot have a storage class">;
1936 def err_explicit_specialization_inconsistent_storage_class : Error<
1937   "explicit specialization has extraneous, inconsistent storage class "
1938   "'%select{none|extern|static|__private_extern__|auto|register}0'">;
1939
1940 // C++ class template specializations and out-of-line definitions
1941 def err_template_spec_needs_header : Error<
1942   "template specialization requires 'template<>'">;
1943 def err_template_spec_needs_template_parameters : Error<
1944   "template specialization or definition requires a template parameter list "
1945   "corresponding to the nested type %0">;
1946 def err_template_param_list_matches_nontemplate : Error<
1947   "template parameter list matching the non-templated nested type %0 should "
1948   "be empty ('template<>')">;
1949 def err_alias_template_extra_headers : Error<
1950   "extraneous template parameter list in alias template declaration">;
1951 def err_template_spec_extra_headers : Error<
1952   "extraneous template parameter list in template specialization or "
1953   "out-of-line template definition">;
1954 def warn_template_spec_extra_headers : Warning<
1955   "extraneous template parameter list in template specialization">;
1956 def note_explicit_template_spec_does_not_need_header : Note<
1957   "'template<>' header not required for explicitly-specialized class %0 "
1958   "declared here">;
1959 def err_template_qualified_declarator_no_match : Error<
1960   "nested name specifier '%0' for declaration does not refer into a class, "
1961   "class template or class template partial specialization">;
1962 def err_specialize_member_of_template : Error<
1963   "cannot specialize (with 'template<>') a member of an unspecialized "
1964   "template">;
1965
1966 // C++ Class Template Partial Specialization
1967 def err_default_arg_in_partial_spec : Error<
1968     "default template argument in a class template partial specialization">;
1969 def err_dependent_non_type_arg_in_partial_spec : Error<
1970     "non-type template argument depends on a template parameter of the "
1971     "partial specialization">;
1972 def err_dependent_typed_non_type_arg_in_partial_spec : Error<
1973     "non-type template argument specializes a template parameter with "
1974     "dependent type %0">;
1975 def err_partial_spec_args_match_primary_template : Error<
1976     "class template partial specialization does not specialize any template "
1977     "argument; to %select{declare|define}0 the primary template, remove the "
1978     "template argument list">; 
1979 def warn_partial_specs_not_deducible : Warning<
1980     "class template partial specialization contains "
1981     "%select{a template parameter|template parameters}0 that can not be "
1982     "deduced; this partial specialization will never be used">;
1983 def note_partial_spec_unused_parameter : Note<
1984     "non-deducible template parameter %0">;
1985 def err_partial_spec_ordering_ambiguous : Error<
1986     "ambiguous partial specializations of %0">;
1987 def note_partial_spec_match : Note<"partial specialization matches %0">;
1988 def err_partial_spec_redeclared : Error<
1989   "class template partial specialization %0 cannot be redeclared">;
1990 def note_prev_partial_spec_here : Note<
1991   "previous declaration of class template partial specialization %0 is here">;
1992 def err_partial_spec_fully_specialized : Error<
1993   "partial specialization of %0 does not use any of its template parameters">;
1994   
1995 // C++ Function template specializations
1996 def err_function_template_spec_no_match : Error<
1997     "no function template matches function template specialization %0">;
1998 def err_function_template_spec_ambiguous : Error<
1999     "function template specialization %0 ambiguously refers to more than one "
2000     "function template; explicitly specify%select{|additional }1 template "
2001     "arguments to identify a particular function template">;
2002 def note_function_template_spec_matched : Note<
2003     "function template matches specialization %0">;
2004 def err_function_template_partial_spec : Error<
2005     "function template partial specialization is not allowed">;
2006
2007 // C++ Template Instantiation
2008 def err_template_recursion_depth_exceeded : Error<
2009   "recursive template instantiation exceeded maximum depth of %0">,
2010   DefaultFatal, NoSFINAE;
2011 def note_template_recursion_depth : Note<
2012   "use -ftemplate-depth-N to increase recursive template instantiation depth">;
2013
2014 def err_template_instantiate_within_definition : Error<
2015   "%select{implicit|explicit}0 instantiation of template %1 within its"
2016   " own definition">;
2017 def err_template_instantiate_undefined : Error<
2018   "%select{implicit|explicit}0 instantiation of undefined template %1">;
2019 def err_implicit_instantiate_member_undefined : Error<
2020   "implicit instantiation of undefined member %0">;
2021 def note_template_class_instantiation_here : Note<
2022   "in instantiation of template class %0 requested here">;
2023 def note_template_member_class_here : Note<
2024   "in instantiation of member class %0 requested here">;
2025 def note_template_member_function_here : Note<
2026   "in instantiation of member function %q0 requested here">;
2027 def note_function_template_spec_here : Note<
2028   "in instantiation of function template specialization %q0 requested here">;
2029 def note_template_static_data_member_def_here : Note<
2030   "in instantiation of static data member %q0 requested here">;
2031 def note_template_type_alias_instantiation_here : Note<
2032   "in instantiation of template type alias %0 requested here">;
2033   
2034 def note_default_arg_instantiation_here : Note<
2035   "in instantiation of default argument for '%0' required here">;
2036 def note_default_function_arg_instantiation_here : Note<
2037   "in instantiation of default function argument expression "
2038   "for '%0' required here">;
2039 def note_explicit_template_arg_substitution_here : Note<
2040   "while substituting explicitly-specified template arguments into function "
2041   "template %0 %1">;
2042 def note_function_template_deduction_instantiation_here : Note<
2043   "while substituting deduced template arguments into function template %0 "
2044   "%1">;
2045 def note_partial_spec_deduct_instantiation_here : Note<
2046   "during template argument deduction for class template partial "
2047   "specialization %0 %1">;
2048 def note_prior_template_arg_substitution : Note<
2049   "while substituting prior template arguments into %select{non-type|template}0"
2050   " template parameter%1 %2">;
2051 def note_template_default_arg_checking : Note<
2052   "while checking a default template argument used here">;
2053 def note_instantiation_contexts_suppressed : Note<
2054   "(skipping %0 context%s0 in backtrace; use -ftemplate-backtrace-limit=0 to "
2055   "see all)">;
2056
2057 def err_field_instantiates_to_function : Error<
2058   "data member instantiated with function type %0">;
2059 def err_variable_instantiates_to_function : Error<
2060   "%select{variable|static data member}0 instantiated with function type %1">;
2061 def err_nested_name_spec_non_tag : Error<
2062   "type %0 cannot be used prior to '::' because it has no members">;
2063
2064 // C++ Explicit Instantiation
2065 def err_explicit_instantiation_duplicate : Error<
2066     "duplicate explicit instantiation of %0">;
2067 def note_previous_explicit_instantiation : Note<
2068     "previous explicit instantiation is here">;
2069 def ext_explicit_instantiation_after_specialization : Extension<
2070     "explicit instantiation of %0 that occurs after an explicit "
2071     "specialization will be ignored (C++0x extension)">,
2072     InGroup<CXX0x>;
2073 def note_previous_template_specialization : Note<
2074     "previous template specialization is here">;
2075 def err_explicit_instantiation_enum : Error<
2076     "explicit instantiation of enumeration type %0">;
2077 def err_explicit_instantiation_nontemplate_type : Error<
2078     "explicit instantiation of non-templated type %0">;
2079 def note_nontemplate_decl_here : Note<
2080     "non-templated declaration is here">;
2081 def err_explicit_instantiation_in_class : Error<
2082   "explicit instantiation of %0 in class scope">;
2083 def err_explicit_instantiation_out_of_scope : Error<
2084   "explicit instantiation of %0 not in a namespace enclosing %1">;
2085 def err_explicit_instantiation_must_be_global : Error<
2086   "explicit instantiation of %0 must occur at global scope">;
2087 def warn_explicit_instantiation_out_of_scope_0x : Warning<
2088   "explicit instantiation of %0 not in a namespace enclosing %1">, 
2089   InGroup<DiagGroup<"-Wc++0x-compat"> >;
2090 def warn_explicit_instantiation_must_be_global_0x : Warning<
2091   "explicit instantiation of %0 must occur at global scope">, 
2092   InGroup<DiagGroup<"-Wc++0x-compat"> >;
2093   
2094 def err_explicit_instantiation_requires_name : Error<
2095   "explicit instantiation declaration requires a name">;
2096 def err_explicit_instantiation_of_typedef : Error<
2097   "explicit instantiation of typedef %0">;
2098 def err_explicit_instantiation_storage_class : Error<
2099   "explicit instantiation cannot have a storage class">;
2100 def err_explicit_instantiation_not_known : Error<
2101   "explicit instantiation of %0 does not refer to a function template, member "
2102   "function, member class, or static data member">;
2103 def note_explicit_instantiation_here : Note<
2104   "explicit instantiation refers here">;
2105 def err_explicit_instantiation_data_member_not_instantiated : Error<
2106   "explicit instantiation refers to static data member %q0 that is not an "
2107   "instantiation">;
2108 def err_explicit_instantiation_member_function_not_instantiated : Error<
2109   "explicit instantiation refers to member function %q0 that is not an "
2110   "instantiation">;
2111 def err_explicit_instantiation_ambiguous : Error<
2112   "partial ordering for explicit instantiation of %0 is ambiguous">;
2113 def note_explicit_instantiation_candidate : Note<
2114   "explicit instantiation candidate function template here %0">;
2115 def err_explicit_instantiation_inline : Error<
2116   "explicit instantiation cannot be 'inline'">;
2117 def ext_explicit_instantiation_without_qualified_id : Extension<
2118   "qualifier in explicit instantiation of %q0 requires a template-id "
2119   "(a typedef is not permitted)">;
2120 def err_explicit_instantiation_unqualified_wrong_namespace : Error<
2121   "explicit instantiation of %q0 must occur in %1">;
2122 def warn_explicit_instantiation_unqualified_wrong_namespace_0x : Warning<
2123   "explicit instantiation of %q0 must occur in %1">, 
2124   InGroup<DiagGroup<"c++0x-compat"> >;
2125 def err_explicit_instantiation_undefined_member : Error<
2126   "explicit instantiation of undefined %select{member class|member function|"
2127   "static data member}0 %1 of class template %2">;
2128 def err_explicit_instantiation_undefined_func_template : Error<
2129   "explicit instantiation of undefined function template %0">;
2130 def err_explicit_instantiation_declaration_after_definition : Error<
2131   "explicit instantiation declaration (with 'extern') follows explicit "
2132   "instantiation definition (without 'extern')">;
2133 def note_explicit_instantiation_definition_here : Note<
2134   "explicit instantiation definition is here">;
2135   
2136 // C++ typename-specifiers
2137 def err_typename_nested_not_found : Error<"no type named %0 in %1">;
2138 def err_typename_nested_not_type : Error<
2139     "typename specifier refers to non-type member %0 in %1">;
2140 def note_typename_refers_here : Note<
2141     "referenced member %0 is declared here">;
2142 def err_typename_missing : Error<
2143   "missing 'typename' prior to dependent type name '%0%1'">;
2144 def warn_typename_missing : ExtWarn<
2145   "missing 'typename' prior to dependent type name '%0%1'">;
2146 def ext_typename_outside_of_template : ExtWarn<
2147   "'typename' occurs outside of a template">, InGroup<CXX0x>;
2148 def err_typename_refers_to_using_value_decl : Error<
2149   "typename specifier refers to a dependent using declaration for a value "
2150   "%0 in %1">;
2151 def note_using_value_decl_missing_typename : Note<
2152   "add 'typename' to treat this using declaration as a type">;
2153
2154 def err_template_kw_refers_to_non_template : Error<
2155     "%0 following the 'template' keyword does not refer to a template">;
2156 def err_template_kw_refers_to_function_template : Error<
2157     "%0 following the 'template' keyword refers to a function template">;
2158 def err_template_kw_refers_to_class_template : Error<
2159     "'%0%1' instantiated to a class template, not a function template">;
2160 def note_referenced_class_template : Error<
2161     "class template declared here">;
2162 def err_template_kw_missing : Error<
2163   "missing 'template' keyword prior to dependent template name '%0%1'">;
2164 def ext_template_outside_of_template : ExtWarn<
2165   "'template' keyword outside of a template">, InGroup<CXX0x>;
2166
2167 def err_non_type_template_in_nested_name_specifier : Error<
2168   "qualified name refers into a specialization of function template '%0'">;
2169 def err_template_id_not_a_type : Error<
2170   "template name refers to non-type template '%0'">;
2171 def note_template_declared_here : Note<
2172   "%select{function template|class template|type alias template|template template parameter}0 "
2173   "%1 declared here">;
2174
2175 // C++0x Variadic Templates
2176 def err_template_param_pack_default_arg : Error<
2177   "template parameter pack cannot have a default argument">;
2178 def err_template_param_pack_must_be_last_template_parameter : Error<
2179   "template parameter pack must be the last template parameter">;
2180
2181 def err_template_parameter_pack_non_pack : Error<
2182   "%select{template type|non-type template|template template}0 parameter"
2183   "%select{| pack}1 conflicts with previous %select{template type|"
2184   "non-type template|template template}0 parameter%select{ pack|}1">;
2185 def note_template_parameter_pack_non_pack : Note<
2186   "%select{template type|non-type template|template template}0 parameter"
2187   "%select{| pack}1 does not match %select{template type|non-type template"
2188   "|template template}0 parameter%select{ pack|}1 in template argument">;
2189 def note_template_parameter_pack_here : Note<
2190   "previous %select{template type|non-type template|template template}0 "
2191   "parameter%select{| pack}1 declared here">;
2192   
2193 def err_unexpanded_parameter_pack_0 : Error<
2194   "%select{expression|base type|declaration type|data member type|bit-field "
2195   "size|static assertion|fixed underlying type|enumerator value|"
2196   "using declaration|friend declaration|qualifier|initializer|default argument|"
2197   "non-type template parameter type|exception type|partial specialization}0 "
2198   "contains an unexpanded parameter pack">;
2199 def err_unexpanded_parameter_pack_1 : Error<
2200   "%select{expression|base type|declaration type|data member type|bit-field "
2201   "size|static assertion|fixed underlying type|enumerator value|"
2202   "using declaration|friend declaration|qualifier|initializer|default argument|"
2203   "non-type template parameter type|exception type|partial specialization}0 "
2204   "contains unexpanded parameter pack %1">;
2205 def err_unexpanded_parameter_pack_2 : Error<
2206   "%select{expression|base type|declaration type|data member type|bit-field "
2207   "size|static assertion|fixed underlying type|enumerator value|"
2208   "using declaration|friend declaration|qualifier|initializer|default argument|"
2209   "non-type template parameter type|exception type|partial specialization}0 "
2210   "contains unexpanded parameter packs %1 and %2">;
2211 def err_unexpanded_parameter_pack_3_or_more : Error<
2212   "%select{expression|base type|declaration type|data member type|bit-field "
2213   "size|static assertion|fixed underlying type|enumerator value|"
2214   "using declaration|friend declaration|qualifier|initializer|default argument|"
2215   "non-type template parameter type|exception type|partial specialization}0 "
2216   "contains unexpanded parameter packs %1, %2, ...">;
2217
2218 def err_pack_expansion_without_parameter_packs : Error<
2219   "pack expansion does not contain any unexpanded parameter packs">;
2220 def err_pack_expansion_length_conflict : Error<
2221   "pack expansion contains parameter packs %0 and %1 that have different "
2222   "lengths (%2 vs. %3)">;
2223 def err_pack_expansion_length_conflict_multilevel : Error<
2224   "pack expansion contains parameter pack %0 that has a different "
2225   "length (%1 vs. %2) from outer parameter packs">;
2226 def err_pack_expansion_member_init : Error<
2227   "pack expansion for initialization of member %0">;
2228
2229 def err_function_parameter_pack_without_parameter_packs : Error<
2230   "type %0 of function parameter pack does not contain any unexpanded "
2231   "parameter packs">;
2232 def err_ellipsis_in_declarator_not_parameter : Error<
2233   "only function and template parameters can be parameter packs">;
2234
2235 def err_sizeof_pack_no_pack_name : Error<
2236   "%0 does not refer to the name of a parameter pack">;
2237
2238 def err_unexpected_typedef : Error<
2239   "unexpected type name %0: expected expression">;
2240 def err_unexpected_namespace : Error<
2241   "unexpected namespace name %0: expected expression">;
2242 def err_undeclared_var_use : Error<"use of undeclared identifier %0">;
2243 def note_dependent_var_use : Note<"must qualify identifier to find this "
2244     "declaration in dependent base class">;
2245 def err_not_found_by_two_phase_lookup : Error<"call to function %0 that is neither "
2246     "visible in the template definition nor found by argument-dependent lookup">;
2247 def note_not_found_by_two_phase_lookup : Note<"%0 should be declared prior to the "
2248     "call site%select{| or in %2| or in an associated namespace of one of its arguments}1">;
2249 def err_undeclared_use : Error<"use of undeclared %0">;
2250 def warn_deprecated : Warning<"%0 is deprecated">,
2251     InGroup<DeprecatedDeclarations>;
2252 def warn_deprecated_message : Warning<"%0 is deprecated: %1">,
2253     InGroup<DeprecatedDeclarations>;
2254 def warn_deprecated_fwdclass_message : Warning<
2255     "%0 maybe deprecated because receiver type is unknown">,
2256     InGroup<DeprecatedDeclarations>;
2257 def warn_deprecated_def : Warning<
2258     "Implementing deprecated %select{method|class|category}0">,
2259     InGroup<DeprecatedImplementations>, DefaultIgnore;
2260 def err_unavailable : Error<"%0 is unavailable">;
2261 def err_unavailable_message : Error<"%0 is unavailable: %1">;
2262 def warn_unavailable_fwdclass_message : Warning<
2263     "%0 maybe unavailable because receiver type is unknown">;
2264 def note_unavailable_here : Note<
2265   "%select{declaration|function}0 has been explicitly marked "
2266   "%select{unavailable|deleted|deprecated}1 here">;
2267 def warn_not_enough_argument : Warning<
2268   "not enough variable arguments in %0 declaration to fit a sentinel">;
2269 def warn_missing_sentinel : Warning <
2270   "missing sentinel in %select{function call|method dispatch|block call}0">;
2271 def note_sentinel_here : Note<
2272   "%select{function|method|block}0 has been explicitly marked sentinel here">;
2273 def warn_missing_prototype : Warning<
2274   "no previous prototype for function %0">,
2275   InGroup<DiagGroup<"missing-prototypes">>, DefaultIgnore;
2276 def err_redefinition : Error<"redefinition of %0">;
2277 def err_definition_of_implicitly_declared_member : Error<
2278   "definition of implicitly declared %select{default constructor|copy "
2279   "constructor|move constructor|copy assignment operator|move assignment "
2280   "operator|destructor}1">;
2281 def err_definition_of_explicitly_defaulted_member : Error<
2282   "definition of explicitly defaulted %select{default constructor|copy "
2283   "constructor|move constructor|copy assignment operator|move assignment "
2284   "operator|destructor}0">;
2285 def err_redefinition_extern_inline : Error<
2286   "redefinition of a 'extern inline' function %0 is not supported in "
2287   "%select{C99 mode|C++}1">;
2288
2289 // This should eventually be an error.
2290 def warn_undefined_internal : Warning<
2291   "%select{function|variable}0 %q1 has internal linkage but is not defined">,
2292   DiagGroup<"undefined-internal">;
2293 def note_used_here : Note<"used here">;
2294
2295 def warn_redefinition_of_typedef : Warning<
2296   "redefinition of typedef %0 is invalid in C">,
2297   InGroup<DiagGroup<"typedef-redefinition"> >, DefaultError;
2298
2299 def err_inline_declaration_block_scope : Error<
2300   "inline declaration of %0 not allowed in block scope">;
2301 def err_static_non_static : Error<
2302   "static declaration of %0 follows non-static declaration">;
2303 def warn_weak_import : Warning <
2304   "an already-declared variable is made a weak_import declaration %0">;
2305 def warn_static_non_static : ExtWarn<
2306   "static declaration of %0 follows non-static declaration">;
2307 def err_non_static_static : Error<
2308   "non-static declaration of %0 follows static declaration">;
2309 def err_extern_non_extern : Error<
2310   "extern declaration of %0 follows non-extern declaration">;
2311 def err_non_extern_extern : Error<
2312   "non-extern declaration of %0 follows extern declaration">;
2313 def err_non_thread_thread : Error<
2314   "non-thread-local declaration of %0 follows thread-local declaration">;
2315 def err_thread_non_thread : Error<
2316   "thread-local declaration of %0 follows non-thread-local declaration">;
2317 def err_redefinition_different_type : Error<
2318   "redefinition of %0 with a different type">;
2319 def err_redefinition_different_kind : Error<
2320   "redefinition of %0 as different kind of symbol">;
2321 def err_redefinition_different_typedef : Error<
2322   "%select{typedef|type alias|type alias template}0 redefinition with different types (%1 vs %2)">;
2323 def err_tag_reference_non_tag : Error<
2324   "elaborated type refers to %select{a non-tag type|a typedef|a type alias|a template|a type alias template}0">;
2325 def err_tag_reference_conflict : Error<
2326   "implicit declaration introduced by elaborated type conflicts with "
2327   "%select{a declaration|a typedef|a type alias|a template}0 of the same name">;
2328 def err_dependent_tag_decl : Error<
2329   "%select{declaration|definition}0 of %select{struct|union|class|enum}1 "
2330   "in a dependent scope">;
2331 def err_tag_definition_of_typedef : Error<
2332   "definition of type %0 conflicts with %select{typedef|type alias}1 of the same name">;
2333 def err_conflicting_types : Error<"conflicting types for %0">;
2334 def err_nested_redefinition : Error<"nested redefinition of %0">;
2335 def err_use_with_wrong_tag : Error<
2336   "use of %0 with tag type that does not match previous declaration">;
2337 def warn_struct_class_tag_mismatch : Warning<
2338     "%select{struct|class}0%select{| template}1 %2 was previously declared "
2339     "as a %select{class|struct}0%select{| template}1">,
2340     InGroup<MismatchedTags>, DefaultIgnore;
2341 def warn_struct_class_previous_tag_mismatch : Warning<
2342     "%2 defined as a %select{struct|class}0%select{| template}1 here but "
2343     "previously declared as a %select{class|struct}0%select{| template}1">,
2344      InGroup<MismatchedTags>, DefaultIgnore;
2345 def note_struct_class_suggestion : Note<
2346     "did you mean %select{struct|class}0 here?">;
2347 def ext_forward_ref_enum : Extension<
2348   "ISO C forbids forward references to 'enum' types">;
2349 def err_forward_ref_enum : Error<
2350   "ISO C++ forbids forward references to 'enum' types">;
2351 def ext_ms_forward_ref_enum : Extension<
2352   "forward references to 'enum' types are a Microsoft extension">, InGroup<Microsoft>;
2353 def ext_forward_ref_enum_def : Extension<
2354   "redeclaration of already-defined enum %0 is a GNU extension">, InGroup<GNU>;
2355   
2356 def err_redefinition_of_enumerator : Error<"redefinition of enumerator %0">;
2357 def err_duplicate_member : Error<"duplicate member %0">;
2358 def err_misplaced_ivar : Error<
2359   "ivars may not be placed in %select{categories|class extension}0">;
2360 def ext_enum_value_not_int : Extension<
2361   "ISO C restricts enumerator values to range of 'int' (%0 is too "
2362   "%select{small|large}1)">;
2363 def warn_enum_too_large : Warning<
2364   "enumeration values exceed range of largest integer">;
2365 def warn_enumerator_too_large : Warning<
2366   "enumerator value %0 is not representable in the largest integer type">;
2367   
2368 def warn_illegal_constant_array_size : Extension<
2369   "size of static array must be an integer constant expression">;
2370 def err_vm_decl_in_file_scope : Error<
2371   "variably modified type declaration not allowed at file scope">;
2372 def err_vm_decl_has_extern_linkage : Error<
2373   "variably modified type declaration can not have 'extern' linkage">;
2374 def err_typecheck_field_variable_size : Error<
2375   "fields must have a constant size: 'variable length array in structure' "
2376   "extension will never be supported">;
2377 def err_vm_func_decl : Error<
2378   "function declaration cannot have variably modified type">;
2379 def err_array_too_large : Error<
2380   "array is too large (%0 elements)">;
2381
2382 // -Wpadded, -Wpacked
2383 def warn_padded_struct_field : Warning<
2384   "padding %select{struct|class}0 %1 with %2 %select{byte|bit}3%select{|s}4 "
2385   "to align %5">, InGroup<Padded>, DefaultIgnore;
2386 def warn_padded_struct_anon_field : Warning<
2387   "padding %select{struct|class}0 %1 with %2 %select{byte|bit}3%select{|s}4 "
2388   "to align anonymous bit-field">, InGroup<Padded>, DefaultIgnore;
2389 def warn_padded_struct_size : Warning<
2390   "padding size of %0 with %1 %select{byte|bit}2%select{|s}3 "
2391   "to alignment boundary">, InGroup<Padded>, DefaultIgnore;
2392 def warn_unnecessary_packed : Warning<
2393   "packed attribute is unnecessary for %0">, InGroup<Packed>, DefaultIgnore;
2394
2395 def err_typecheck_negative_array_size : Error<"array size is negative">;
2396 def warn_typecheck_function_qualifiers : Warning<
2397   "qualifier on function type %0 has unspecified behavior">;
2398 def err_typecheck_invalid_restrict_not_pointer : Error<
2399   "restrict requires a pointer or reference (%0 is invalid)">;
2400 def err_typecheck_invalid_restrict_not_pointer_noarg : Error<
2401   "restrict requires a pointer or reference">;
2402 def err_typecheck_invalid_restrict_invalid_pointee : Error<
2403   "pointer to function type %0 may not be 'restrict' qualified">;
2404 def ext_typecheck_zero_array_size : Extension<
2405   "zero size arrays are an extension">;
2406 def err_typecheck_zero_array_size : Error<
2407   "zero-length arrays are not permitted in C++">;
2408 def err_at_least_one_initializer_needed_to_size_array : Error<
2409   "at least one initializer value required to size array">;
2410 def err_array_size_non_int : Error<"size of array has non-integer type %0">;
2411 def err_init_element_not_constant : Error<
2412   "initializer element is not a compile-time constant">;
2413 def err_block_extern_cant_init : Error<
2414   "'extern' variable cannot have an initializer">;
2415 def warn_extern_init : Warning<"'extern' variable has an initializer">;
2416 def err_variable_object_no_init : Error<
2417   "variable-sized object may not be initialized">;
2418 def err_array_init_list_required : Error<
2419   "initialization with '{...}' expected for array">;
2420 def err_excess_initializers : Error<
2421   "excess elements in %select{array|vector|scalar|union|struct}0 initializer">;
2422 def warn_excess_initializers : ExtWarn<
2423   "excess elements in %select{array|vector|scalar|union|struct}0 initializer">;
2424 def err_excess_initializers_in_char_array_initializer : Error<
2425   "excess elements in char array initializer">;
2426 def warn_excess_initializers_in_char_array_initializer : ExtWarn<
2427   "excess elements in char array initializer">;
2428 def err_initializer_string_for_char_array_too_long : Error<
2429   "initializer-string for char array is too long">;
2430 def warn_initializer_string_for_char_array_too_long : ExtWarn<
2431   "initializer-string for char array is too long">;
2432 def warn_missing_field_initializers : Warning<
2433   "missing field '%0' initializer">,
2434   InGroup<MissingFieldInitializers>, DefaultIgnore;
2435 def warn_braces_around_scalar_init : Warning<
2436   "braces around scalar initializer">;
2437 def warn_many_braces_around_scalar_init : ExtWarn<
2438   "too many braces around scalar initializer">;
2439 def err_empty_scalar_initializer : Error<"scalar initializer cannot be empty">;
2440 def err_illegal_initializer : Error<
2441   "illegal initializer (only variables can be initialized)">;
2442 def err_illegal_initializer_type : Error<"illegal initializer type %0">;
2443 def err_init_objc_class : Error<
2444   "cannot initialize Objective-C class type %0">;
2445 def err_implicit_empty_initializer : Error<
2446   "initializer for aggregate with no elements requires explicit braces">;
2447 def err_bitfield_has_negative_width : Error<
2448   "bit-field %0 has negative width (%1)">;
2449 def err_anon_bitfield_has_negative_width : Error<
2450   "anonymous bit-field has negative width (%0)">;
2451 def err_bitfield_has_zero_width : Error<"named bit-field %0 has zero width">;
2452 def err_bitfield_width_exceeds_type_size : Error<
2453   "size of bit-field %0 (%1 bits) exceeds size of its type (%2 bits)">;
2454 def err_anon_bitfield_width_exceeds_type_size : Error<
2455   "size of anonymous bit-field (%0 bits) exceeds size of its type (%1 bits)">;
2456 def err_incorrect_number_of_vector_initializers : Error<
2457   "number of elements must be either one or match the size of the vector">;
2458   
2459 // Used by C++ which allows bit-fields that are wider than the type.
2460 def warn_bitfield_width_exceeds_type_size: Warning<
2461   "size of bit-field %0 (%1 bits) exceeds the size of its type; value will be "
2462   "truncated to %2 bits">;
2463 def warn_anon_bitfield_width_exceeds_type_size : Warning<
2464   "size of anonymous bit-field (%0 bits) exceeds size of its type; value will "
2465   "be truncated to %1 bits">;
2466
2467 def warn_missing_braces : Warning<
2468   "suggest braces around initialization of subobject">,
2469   InGroup<DiagGroup<"missing-braces">>, DefaultIgnore;
2470
2471 def err_redefinition_of_label : Error<"redefinition of label %0">;
2472 def err_undeclared_label_use : Error<"use of undeclared label %0">;
2473 def warn_unused_label : Warning<"unused label %0">,
2474   InGroup<UnusedLabel>, DefaultIgnore;
2475
2476 def err_goto_into_protected_scope : Error<"goto into protected scope">;
2477 def err_switch_into_protected_scope : Error<
2478   "switch case is in protected scope">;
2479 def err_indirect_goto_without_addrlabel : Error<
2480   "indirect goto in function with no address-of-label expressions">;
2481 def err_indirect_goto_in_protected_scope : Error<
2482   "indirect goto might cross protected scopes">;
2483 def note_indirect_goto_target : Note<"possible target of indirect goto">;
2484 def note_protected_by_variable_init : Note<
2485   "jump bypasses variable initialization">;
2486 def note_protected_by_variable_nontriv_destructor : Note<
2487   "jump bypasses variable with a non-trivial destructor">;
2488 def note_protected_by_cleanup : Note<
2489   "jump bypasses initialization of variable with __attribute__((cleanup))">;
2490 def note_protected_by_vla_typedef : Note<
2491   "jump bypasses initialization of VLA typedef">;
2492 def note_protected_by_vla_type_alias : Note<
2493   "jump bypasses initialization of VLA type alias">;
2494 def note_protected_by_vla : Note<
2495   "jump bypasses initialization of variable length array">;
2496 def note_protected_by_objc_try : Note<
2497   "jump bypasses initialization of @try block">;
2498 def note_protected_by_objc_catch : Note<
2499   "jump bypasses initialization of @catch block">;
2500 def note_protected_by_objc_finally : Note<
2501   "jump bypasses initialization of @finally block">;
2502 def note_protected_by_objc_synchronized : Note<
2503   "jump bypasses initialization of @synchronized block">;
2504 def note_protected_by_objc_autoreleasepool : Note<
2505   "jump bypasses auto release push of @autoreleasepool block">;
2506 def note_protected_by_cxx_try : Note<
2507   "jump bypasses initialization of try block">;
2508 def note_protected_by_cxx_catch : Note<
2509   "jump bypasses initialization of catch block">;
2510 def note_protected_by___block : Note<
2511   "jump bypasses setup of __block variable">;
2512 def note_protected_by_objc_ownership : Note<
2513   "jump bypasses initialization of retaining variable">;
2514 def note_enters_block_captures_cxx_obj : Note<
2515   "jump enters lifetime of block which captures a destructible c++ object">;
2516 def note_enters_block_captures_strong : Note<
2517   "jump enters lifetime of block which strongly captures a variable">;
2518 def note_enters_block_captures_weak : Note<
2519   "jump enters lifetime of block which weakly captures a variable">;
2520
2521 def note_exits_cleanup : Note<
2522   "jump exits scope of variable with __attribute__((cleanup))">;
2523 def note_exits_dtor : Note<
2524   "jump exits scope of variable with non-trivial destructor">;
2525 def note_exits___block : Note<
2526   "jump exits scope of __block variable">;
2527 def note_exits_objc_try : Note<
2528   "jump exits @try block">;
2529 def note_exits_objc_catch : Note<
2530   "jump exits @catch block">;
2531 def note_exits_objc_finally : Note<
2532   "jump exits @finally block">;
2533 def note_exits_objc_synchronized : Note<
2534   "jump exits @synchronized block">;
2535 def note_exits_cxx_try : Note<
2536   "jump exits try block">;
2537 def note_exits_cxx_catch : Note<
2538   "jump exits catch block">;
2539 def note_exits_objc_autoreleasepool : Note<
2540   "jump exits autoreleasepool block">;
2541 def note_exits_objc_ownership : Note<
2542   "jump exits scope of retaining variable">;
2543 def note_exits_block_captures_cxx_obj : Note<
2544   "jump exits lifetime of block which captures a destructible c++ object">;
2545 def note_exits_block_captures_strong : Note<
2546   "jump exits lifetime of block which strongly captures a variable">;
2547 def note_exits_block_captures_weak : Note<
2548   "jump exits lifetime of block which weakly captures a variable">;
2549
2550 def err_func_returning_array_function : Error<
2551   "function cannot return %select{array|function}0 type %1">;
2552 def err_field_declared_as_function : Error<"field %0 declared as a function">;
2553 def err_field_incomplete : Error<"field has incomplete type %0">;
2554 def ext_variable_sized_type_in_struct : ExtWarn<
2555   "field %0 with variable sized type %1 not at the end of a struct or class is"
2556   " a GNU extension">, InGroup<GNU>;
2557
2558 def err_flexible_array_empty_struct : Error<
2559   "flexible array %0 not allowed in otherwise empty struct">;
2560 def err_flexible_array_has_nonpod_type : Error<
2561   "flexible array member %0 of non-POD element type %1">;
2562 def ext_flexible_array_in_struct : Extension<
2563   "%0 may not be nested in a struct due to flexible array member">;
2564 def ext_flexible_array_in_array : Extension<
2565   "%0 may not be used as an array element due to flexible array member">;
2566 def err_flexible_array_init_nonempty : Error<
2567   "non-empty initialization of flexible array member inside subobject">;
2568 def ext_flexible_array_empty_aggregate_ms : Extension<
2569   "flexible array member %0 in otherwise empty %select{struct|class}1 "
2570   "is a Microsoft extension">, InGroup<Microsoft>;
2571 def ext_flexible_array_union_ms : Extension<
2572   "flexible array member %0 in a union is a Microsoft extension">,
2573   InGroup<Microsoft>;
2574 def ext_flexible_array_empty_aggregate_gnu : Extension<
2575   "flexible array member %0 in otherwise empty %select{struct|class}1 "
2576   "is a GNU extension">, InGroup<GNU>;
2577 def ext_flexible_array_union_gnu : Extension<
2578   "flexible array member %0 in a union is a GNU extension">, InGroup<GNU>;
2579
2580 let CategoryName = "Automatic Reference Counting Issue" in {
2581
2582 // ARC-mode diagnostics.
2583 def err_arc_weak_no_runtime : Error<
2584   "the current deployment target does not support automated __weak references">;
2585 def err_arc_unsupported_weak_class : Error<
2586   "class is incompatible with __weak references">;
2587 def err_arc_weak_unavailable_assign : Error<
2588   "assignment of a weak-unavailable object to a __weak object">;
2589 def err_arc_convesion_of_weak_unavailable : Error<
2590   "%select{implicit conversion|cast}0 of weak-unavailable object of type %1 to"
2591   " a __weak object of type %2">;
2592 def err_arc_illegal_explicit_message : Error<
2593   "ARC forbids explicit message send of %0">;
2594 def err_arc_unused_init_message : Error<
2595   "the result of a delegate init call must be immediately returned "
2596   "or assigned to 'self'">;
2597 def err_arc_mismatched_cast : Error<
2598   "%select{implicit conversion|cast}0 of "
2599   "%select{%2|a non-Objective-C pointer type %2|a block pointer|"
2600   "an Objective-C pointer|an indirect pointer to an Objective-C pointer}1"
2601   " to %3 is disallowed with ARC">;
2602 def err_arc_objc_object_in_struct : Error<
2603   "ARC forbids Objective-C objects in structs or unions">;
2604 def err_arc_objc_property_default_assign_on_object : Error<
2605   "ARC forbids synthesizing a property of an Objective-C object "
2606   "with unspecified storage attribute">;
2607 def err_arc_illegal_selector : Error<
2608   "ARC forbids use of %0 in a @selector">;
2609 def err_arc_illegal_method_def : Error<
2610   "ARC forbids implementation of %0">;
2611 def err_arc_lost_method_convention : Error<
2612   "method was declared as %select{an 'alloc'|a 'copy'|an 'init'|a 'new'}0 "
2613   "method, but its implementation doesn't match because %select{"
2614   "its result type is not an object pointer|"
2615   "its result type is unrelated to its receiver type}1">;
2616 def note_arc_lost_method_convention : Note<"declaration in interface">;
2617 def err_arc_gained_method_convention : Error<
2618   "method implementation does not match its declaration">;
2619 def note_arc_gained_method_convention : Note<
2620   "declaration in interface is not in the '%select{alloc|copy|init|new}0' "
2621   "family because %select{its result type is not an object pointer|"
2622   "its result type is unrelated to its receiver type}1">;
2623 def err_typecheck_arr_assign_self : Error<
2624   "cannot assign to 'self' outside of a method in the init family">;
2625 def err_typecheck_arr_assign_enumeration : Error<
2626   "fast enumeration variables can't be modified in ARC by default; "
2627   "declare the variable __strong to allow this">;
2628 def warn_arc_non_pod_class_with_object_member : Warning<
2629   "%0 cannot be shared between ARC and non-ARC "
2630   "code; add a copy constructor, a copy assignment operator, and a destructor "
2631   "to make it ABI-compatible">, InGroup<AutomaticReferenceCountingABI>,
2632   DefaultIgnore;
2633 def warn_arc_retained_assign : Warning<
2634   "assigning retained object to %select{weak|unsafe_unretained}0 variable"
2635   "; object will be released after assignment">,
2636   InGroup<ARCUnsafeRetainedAssign>;
2637 def warn_arc_retained_property_assign : Warning<
2638   "assigning retained object to unsafe property"
2639   "; object will be released after assignment">,
2640   InGroup<ARCUnsafeRetainedAssign>;
2641 def warn_arc_trivial_member_function_with_object_member : Warning<
2642   "%0 cannot be shared between ARC and non-ARC "
2643   "code; add a non-trivial %select{copy constructor|copy assignment operator|"
2644   "destructor}1 to make it ABI-compatible">, 
2645   InGroup<AutomaticReferenceCountingABI>, DefaultIgnore;
2646 def err_arc_new_array_without_ownership : Error<
2647   "'new' cannot allocate an array of %0 with no explicit ownership">;
2648 def warn_err_new_delete_object_array : Warning<
2649   "%select{allocating|destroying}0 an array of %1; this array must not "
2650   "%select{be deleted in|have been allocated from}0 non-ARC code">,
2651   InGroup<AutomaticReferenceCountingABI>, DefaultIgnore;
2652 def err_arc_autoreleasing_var : Error<
2653   "%select{__block variables|global variables|fields|ivars}0 cannot have "
2654   "__autoreleasing ownership">;
2655 def err_arc_thread_ownership : Error<
2656   "thread-local variable has non-trivial ownership: type is %0">;
2657 def err_arc_indirect_no_ownership : Error<
2658   "%select{pointer|reference}1 to non-const type %0 with no explicit ownership">,
2659   InGroup<AutomaticReferenceCounting>;
2660 def err_arc_array_param_no_ownership : Error<
2661   "must explicitly describe intended ownership of an object array parameter">;
2662 def err_arc_pseudo_dtor_inconstant_quals : Error<
2663   "pseudo-destructor destroys object of type %0 with inconsistently-qualified "
2664   "type %1">;
2665 def err_arc_init_method_unrelated_result_type : Error<
2666   "init methods must return a type related to the receiver type">;
2667 def err_arc_nonlocal_writeback : Error<
2668   "passing address of %select{non-local|non-scalar}0 object to "
2669   "__autoreleasing parameter for write-back">;
2670 def err_arc_method_not_found : Error<
2671   "no known %select{instance|class}1 method for selector %0">;
2672 def err_arc_receiver_forward_class : Error<
2673   "receiver %0 for class message is a forward declaration">;
2674 def err_arc_may_not_respond : Error<
2675   "receiver type %0 for instance message does not declare a method with "
2676   "selector %1">;
2677 def err_arc_receiver_forward_instance : Error<
2678   "receiver type %0 for instance message is a forward declaration">;
2679 def err_arc_multiple_method_decl : Error< 
2680   "multiple methods named %0 found with mismatched result, "
2681   "parameter type or attributes">;
2682 def warn_arc_retain_cycle : Warning<
2683   "capturing %0 strongly in this block is likely to lead to a retain cycle">,
2684   InGroup<ARCRetainCycles>;
2685 def note_arc_retain_cycle_owner : Note<
2686   "block will be retained by %select{the captured object|an object strongly "
2687   "retained by the captured object}0">;
2688 def note_nontrivial_objc_ownership : Note<
2689   "because type %0 has %select{no|no|__strong|__weak|__autoreleasing}1 "
2690   "ownership">;
2691 def warn_arc_object_memaccess : Warning<
2692   "%select{destination for|source of}0 this %1 call is a pointer to "
2693   "ownership-qualified type %2">, InGroup<ARCNonPodMemAccess>;
2694
2695 def err_arc_strong_property_ownership : Error<
2696   "existing ivar %1 for strong property %0 may not be "
2697   "%select{|__unsafe_unretained||__weak}2">;
2698 def err_arc_assign_property_ownership : Error<
2699   "existing ivar %1 for unsafe_unretained property %0 must be __unsafe_unretained">;
2700 def err_arc_inconsistent_property_ownership : Error<
2701   "%select{strong|weak|unsafe_unretained}1 property %0 may not also be "
2702   "declared %select{|__unsafe_unretained|__strong|__weak|__autoreleasing}2">;
2703 def err_arc_atomic_ownership : Error<
2704   "cannot perform atomic operation on a pointer to type %0: type has "
2705   "non-trivial ownership">;
2706
2707 def err_arc_bridge_cast_incompatible : Error<
2708   "incompatible types casting %0 to %1 with a %select{__bridge|"
2709   "__bridge_transfer|__bridge_retained}2 cast">;
2710 def err_arc_bridge_cast_wrong_kind : Error<
2711   "cast of %select{Objective-C|block|C}0 pointer type %1 to "
2712   "%select{Objective-C|block|C}2 pointer type %3 cannot use %select{__bridge|"
2713   "__bridge_transfer|__bridge_retained}4">;
2714 def err_arc_cast_requires_bridge : Error<
2715   "cast of %select{Objective-C|block|C}0 pointer type %1 to "
2716   "%select{Objective-C|block|C}2 pointer type %3 requires a bridged cast">;
2717 def note_arc_bridge : Note<
2718   "use __bridge to convert directly (no change in ownership)">;
2719 def note_arc_bridge_transfer : Note<
2720   "use __bridge_transfer to transfer ownership of a +1 %0 into ARC">;
2721 def note_arc_bridge_retained : Note<
2722   "use __bridge_retained to make an ARC object available as a +1 %0">;
2723
2724 } // ARC category name
2725
2726 def err_flexible_array_init_needs_braces : Error<
2727   "flexible array requires brace-enclosed initializer">;
2728 def err_illegal_decl_array_of_functions : Error<
2729   "'%0' declared as array of functions of type %1">;
2730 def err_illegal_decl_array_incomplete_type : Error<
2731   "array has incomplete element type %0">;
2732 def err_illegal_message_expr_incomplete_type : Error<
2733   "objective-c message has incomplete result type %0">;
2734 def err_illegal_decl_array_of_references : Error<
2735   "'%0' declared as array of references of type %1">;
2736 def err_decl_negative_array_size : Error<
2737   "'%0' declared as an array with a negative size">;
2738 def err_array_star_outside_prototype : Error<
2739   "star modifier used outside of function prototype">;
2740 def err_illegal_decl_pointer_to_reference : Error<
2741   "'%0' declared as a pointer to a reference of type %1">;
2742 def err_illegal_decl_mempointer_to_reference : Error<
2743   "'%0' declared as a member pointer to a reference of type %1">;
2744 def err_illegal_decl_mempointer_to_void : Error<
2745   "'%0' declared as a member pointer to void">;
2746 def err_illegal_decl_mempointer_in_nonclass : Error<
2747   "'%0' does not point into a class">;
2748 def err_mempointer_in_nonclass_type : Error<
2749   "member pointer refers into non-class type %0">;
2750 def err_reference_to_void : Error<"cannot form a reference to 'void'">;
2751 def err_qualified_block_pointer_type : Error<
2752   "qualifier specification on block pointer type not allowed">;
2753 def err_nonfunction_block_type : Error<
2754   "block pointer to non-function type is invalid">;
2755 def err_return_block_has_expr : Error<"void block should not return a value">;
2756 def err_block_return_missing_expr : Error<
2757   "non-void block should return a value">;
2758 def err_block_with_return_type_requires_args : Error<
2759   "block with explicit return type requires argument list">;
2760 def err_func_def_incomplete_result : Error<
2761   "incomplete result type %0 in function definition">;
2762
2763 // Expressions.
2764 def ext_sizeof_function_type : Extension<
2765   "invalid application of 'sizeof' to a function type">, InGroup<PointerArith>;
2766 def err_sizeof_alignof_overloaded_function_type : Error<
2767   "invalid application of '%select{sizeof|__alignof|vec_step}0' to an "
2768   "overloaded function">;
2769 def ext_sizeof_void_type : Extension<
2770   "invalid application of '%select{sizeof|__alignof|vec_step}0' to a void "
2771   "type">, InGroup<PointerArith>;
2772 def err_sizeof_alignof_incomplete_type : Error<
2773   "invalid application of '%select{sizeof|__alignof|vec_step}0' to an "
2774   "incomplete type %1">;
2775 def err_sizeof_alignof_bitfield : Error<
2776   "invalid application of '%select{sizeof|__alignof}0' to bit-field">;
2777 def err_vecstep_non_scalar_vector_type : Error<
2778   "'vec_step' requires built-in scalar or vector type, %0 invalid">;
2779 def err_offsetof_incomplete_type : Error<
2780   "offsetof of incomplete type %0">;
2781 def err_offsetof_record_type : Error<
2782   "offsetof requires struct, union, or class type, %0 invalid">;
2783 def err_offsetof_array_type : Error<"offsetof requires array type, %0 invalid">;
2784 def ext_offsetof_extended_field_designator : Extension<
2785   "using extended field designator is an extension">;
2786 def warn_offsetof_non_pod_type : ExtWarn<"offset of on non-POD type %0">,
2787   InGroup<InvalidOffsetof>;
2788 def err_offsetof_bitfield : Error<"cannot compute offset of bit-field %0">;
2789
2790 def warn_floatingpoint_eq : Warning<
2791   "comparing floating point with == or != is unsafe">,
2792   InGroup<DiagGroup<"float-equal">>, DefaultIgnore;
2793
2794 def warn_division_by_zero : Warning<"division by zero is undefined">;
2795 def warn_remainder_by_zero : Warning<"remainder by zero is undefined">;
2796 def warn_shift_negative : Warning<"shift count is negative">;
2797 def warn_shift_gt_typewidth : Warning<"shift count >= width of type">;
2798 def warn_shift_result_gt_typewidth : Warning<
2799   "signed shift result (%0) requires %1 bits to represent, but %2 only has "
2800   "%3 bits">, InGroup<DiagGroup<"shift-overflow">>;
2801 def warn_shift_result_sets_sign_bit : Warning<
2802   "signed shift result (%0) sets the sign bit of the shift expression's "
2803   "type (%1) and becomes negative">,
2804   InGroup<DiagGroup<"shift-sign-overflow">>, DefaultIgnore;
2805
2806 def warn_precedence_bitwise_rel : Warning<
2807   "%0 has lower precedence than %1; %1 will be evaluated first">,
2808   InGroup<Parentheses>;
2809 def note_precedence_bitwise_first : Note<
2810   "place parentheses around the %0 expression to evaluate it first">;
2811 def note_precedence_bitwise_silence : Note<
2812   "place parentheses around the %0 expression to silence this warning">;
2813
2814 def warn_precedence_conditional : Warning<
2815   "operator '?:' has lower precedence than '%0'; '%0' will be evaluated first">,
2816   InGroup<Parentheses>;
2817 def note_precedence_conditional_first : Note<
2818   "place parentheses around the '?:' expression to evaluate it first">;
2819 def note_precedence_conditional_silence : Note<
2820   "place parentheses around the '%0' expression to silence this warning">;
2821
2822 def warn_logical_instead_of_bitwise : Warning<
2823   "use of logical %0 with constant operand; switch to bitwise %1 or "
2824   "remove constant">, InGroup<DiagGroup<"constant-logical-operand">>;
2825
2826 def warn_bitwise_and_in_bitwise_or : Warning<
2827   "'&' within '|'">, InGroup<BitwiseOpParentheses>;
2828 def note_bitwise_and_in_bitwise_or_silence : Note<
2829   "place parentheses around the '&' expression to silence this warning">;
2830
2831 def warn_logical_and_in_logical_or : Warning<
2832   "'&&' within '||'">, InGroup<LogicalOpParentheses>;
2833 def note_logical_and_in_logical_or_silence : Note<
2834   "place parentheses around the '&&' expression to silence this warning">;
2835
2836 def warn_self_assignment : Warning<
2837   "explicitly assigning a variable of type %0 to itself">,
2838   InGroup<SelfAssignment>, DefaultIgnore;
2839
2840 def warn_sizeof_array_param : Warning<
2841   "sizeof on array function parameter will return size of %0 instead of %1">,
2842   InGroup<SizeofArrayArgument>;
2843
2844 def err_sizeof_nonfragile_interface : Error<
2845   "invalid application of '%select{alignof|sizeof}1' to interface %0 in "
2846   "non-fragile ABI">;
2847 def err_atdef_nonfragile_interface : Error<
2848   "invalid application of @defs in non-fragile ABI">;
2849 def err_subscript_nonfragile_interface : Error<
2850   "subscript requires size of interface %0, which is not constant in "
2851   "non-fragile ABI">;
2852
2853 def err_arithmetic_nonfragile_interface : Error<
2854   "arithmetic on pointer to interface %0, which is not a constant size in "
2855   "non-fragile ABI">;
2856
2857
2858 def ext_subscript_non_lvalue : Extension<
2859   "ISO C90 does not allow subscripting non-lvalue array">;
2860 def err_typecheck_subscript_value : Error<
2861   "subscripted value is not an array, pointer, or vector">;
2862 def err_typecheck_subscript_not_integer : Error<
2863   "array subscript is not an integer">;
2864 def err_subscript_function_type : Error<
2865   "subscript of pointer to function type %0">;
2866 def err_subscript_incomplete_type : Error<
2867   "subscript of pointer to incomplete type %0">;
2868 def ext_gnu_subscript_void_type : Extension<
2869   "subscript of a pointer to void is a GNU extension">, InGroup<PointerArith>;
2870 def err_typecheck_member_reference_struct_union : Error<
2871   "member reference base type %0 is not a structure or union">;
2872 def err_typecheck_member_reference_ivar : Error<
2873   "%0 does not have a member named %1">;
2874 def error_arc_weak_ivar_access : Error<
2875   "dereferencing a __weak pointer is not allowed due to possible "
2876   "null value caused by race condition, assign it to strong variable first">;
2877 def err_typecheck_member_reference_arrow : Error<
2878   "member reference type %0 is not a pointer">;
2879 def err_typecheck_member_reference_suggestion : Error<
2880   "member reference type %0 is %select{a|not a}1 pointer; maybe you meant to use '%select{->|.}1'?">;
2881 def err_typecheck_member_reference_type : Error<
2882   "cannot refer to type member %0 in %1 with '%select{.|->}2'">;
2883 def err_typecheck_member_reference_unknown : Error<
2884   "cannot refer to member %0 in %1 with '%select{.|->}2'">;
2885 def err_member_reference_needs_call : Error<
2886   "base of member reference is %select{a function|an overloaded function}0; "
2887   "perhaps you meant to call it%select{| with no arguments}1?">;
2888 def note_member_ref_possible_intended_overload : Note<
2889   "possibly valid overload here">;
2890 def warn_subscript_is_char : Warning<"array subscript is of type 'char'">,
2891   InGroup<CharSubscript>, DefaultIgnore;
2892
2893 def err_typecheck_incomplete_tag : Error<"incomplete definition of type %0">;
2894 def err_no_member : Error<"no member named %0 in %1">;
2895
2896 def err_member_not_yet_instantiated : Error<
2897   "no member %0 in %1; it has not yet been instantiated">;
2898 def note_non_instantiated_member_here : Note<
2899   "not-yet-instantiated member is declared here">;
2900
2901 def err_member_redeclared : Error<"class member cannot be redeclared">;
2902 def err_member_name_of_class : Error<"member %0 has the same name as its class">;
2903 def err_member_def_undefined_record : Error<
2904   "out-of-line definition of %0 from class %1 without definition">;
2905 def err_member_def_does_not_match : Error<
2906   "out-of-line definition of %0 does not match any declaration in %1">;
2907 def err_member_def_does_not_match_ret_type : Error<
2908   "out-of-line definition of %q0 differs from the declaration in the return type">;
2909 def err_nonstatic_member_out_of_line : Error<
2910   "non-static data member defined out-of-line">;
2911 def err_nonstatic_flexible_variable : Error<
2912   "non-static initialization of a variable with flexible array member">;
2913 def err_qualified_typedef_declarator : Error<
2914   "typedef declarator cannot be qualified">;
2915 def err_qualified_param_declarator : Error<
2916   "parameter declarator cannot be qualified">;
2917 def ext_out_of_line_declaration : ExtWarn<
2918   "out-of-line declaration of a member must be a definition">,
2919   InGroup<OutOfLineDeclaration>, DefaultError;
2920 def warn_member_extra_qualification : Warning<
2921   "extra qualification on member %0">;
2922 def err_member_qualification : Error<
2923   "non-friend class member %0 cannot have a qualified name">;  
2924 def note_member_def_close_match : Note<"member declaration nearly matches">;
2925 def err_typecheck_ivar_variable_size : Error<
2926   "instance variables must have a constant size">;
2927 def err_ivar_reference_type : Error<
2928   "instance variables cannot be of reference type">;
2929 def err_typecheck_illegal_increment_decrement : Error<
2930   "cannot %select{decrement|increment}1 value of type %0">;
2931 def err_typecheck_arithmetic_incomplete_type : Error<
2932   "arithmetic on a pointer to an incomplete type %0">;
2933 def err_typecheck_pointer_arith_function_type : Error<
2934   "arithmetic on%select{ a|}0 pointer%select{|s}0 to%select{ the|}2 "
2935   "function type%select{|s}2 %1%select{| and %3}2">;
2936 def err_typecheck_pointer_arith_void_type : Error<
2937   "arithmetic on%select{ a|}0 pointer%select{|s}0 to void">;
2938 def err_typecheck_decl_incomplete_type : Error<
2939   "variable has incomplete type %0">;
2940 def ext_typecheck_decl_incomplete_type : ExtWarn<
2941   "tentative definition of variable with internal linkage has incomplete non-array type %0">;
2942 def err_tentative_def_incomplete_type : Error<
2943   "tentative definition has type %0 that is never completed">;
2944 def err_tentative_def_incomplete_type_arr : Error<
2945   "tentative definition has array of type %0 that is never completed">;
2946 def warn_tentative_incomplete_array : Warning<
2947   "tentative array definition assumed to have one element">;
2948 def err_typecheck_incomplete_array_needs_initializer : Error<
2949   "definition of variable with array type needs an explicit size "
2950   "or an initializer">;
2951 def err_array_init_not_init_list : Error<
2952   "array initializer must be an initializer "
2953   "list%select{| or string literal}0">;
2954 def err_array_init_different_type : Error<
2955   "cannot initialize array of type %0 with array of type %1">;
2956 def err_array_init_non_constant_array : Error<
2957   "cannot initialize array of type %0 with non-constant array of type %1">;
2958 def ext_array_init_copy : Extension<
2959   "initialization of an array of type %0 from a compound literal of type %1 is "
2960   "a GNU extension">;
2961 def warn_deprecated_string_literal_conversion : Warning<
2962   "conversion from string literal to %0 is deprecated">, InGroup<DeprecatedWritableStr>;
2963 def err_realimag_invalid_type : Error<"invalid type %0 to %1 operator">;
2964 def err_typecheck_sclass_fscope : Error<
2965   "illegal storage class on file-scoped variable">;
2966 def err_unsupported_global_register : Error<
2967   "global register variables are not supported">;
2968 def warn_standalone_specifier : Warning<"'%0' ignored on this declaration">;
2969 def err_typecheck_sclass_func : Error<"illegal storage class on function">;
2970 def err_static_block_func : Error<
2971   "function declared in block scope cannot have 'static' storage class">;
2972 def err_typecheck_address_of : Error<"address of %0 requested">;
2973 def ext_typecheck_addrof_void : Extension<
2974   "ISO C forbids taking the address of an expression of type 'void'">;
2975 def err_unqualified_pointer_member_function : Error<
2976   "must explicitly qualify name of member function when taking its address">;
2977 def err_invalid_form_pointer_member_function : Error<
2978   "cannot create a non-constant pointer to member function">;
2979 def err_parens_pointer_member_function : Error<
2980   "cannot parenthesize the name of a method when forming a member pointer">;
2981 def err_typecheck_invalid_lvalue_addrof : Error<
2982   "address expression must be an lvalue or a function designator">;
2983 def ext_typecheck_addrof_class_temporary : ExtWarn<
2984   "taking the address of a temporary object of type %0">, 
2985   InGroup<DiagGroup<"address-of-temporary">>, DefaultError;
2986 def err_typecheck_addrof_class_temporary : Error<
2987   "taking the address of a temporary object of type %0">;
2988 def err_typecheck_unary_expr : Error<
2989   "invalid argument type %0 to unary expression">;
2990 def err_typecheck_indirection_requires_pointer : Error<
2991   "indirection requires pointer operand (%0 invalid)">;
2992 def warn_indirection_through_null : Warning<
2993   "indirection of non-volatile null pointer will be deleted, not trap">, InGroup<NullDereference>;
2994 def note_indirection_through_null : Note<
2995   "consider using __builtin_trap() or qualifying pointer with 'volatile'">;
2996 def warn_pointer_indirection_from_incompatible_type : Warning<
2997   "dereference of type %1 that was reinterpret_cast from type %0 has undefined "
2998   "behavior.">,
2999   InGroup<DiagGroup<"undefined-reinterpret-cast">>, DefaultIgnore;
3000
3001 def err_assignment_requires_nonfragile_object : Error<
3002   "cannot assign to class object in non-fragile ABI (%0 invalid)">;
3003 def err_direct_interface_unsupported : Error<
3004   "indirection to an interface is not supported (%0 invalid)">;
3005 def err_typecheck_invalid_operands : Error<
3006   "invalid operands to binary expression (%0 and %1)">;
3007 def err_typecheck_sub_ptr_object : Error<
3008   "subtraction of pointer %0 requires pointee to be a complete object type">;
3009 def err_typecheck_sub_ptr_compatible : Error<
3010   "%0 and %1 are not pointers to compatible types">;
3011 def ext_typecheck_ordered_comparison_of_pointer_integer : ExtWarn<
3012   "ordered comparison between pointer and integer (%0 and %1)">;
3013 def ext_typecheck_ordered_comparison_of_pointer_and_zero : Extension<
3014   "ordered comparison between pointer and zero (%0 and %1) is an extension">;
3015 def ext_typecheck_ordered_comparison_of_function_pointers : ExtWarn<
3016   "ordered comparison of function pointers (%0 and %1)">;
3017 def ext_typecheck_comparison_of_fptr_to_void : Extension<
3018   "equality comparison between function pointer and void pointer (%0 and %1)">;
3019 def err_typecheck_comparison_of_fptr_to_void : Error<
3020   "equality comparison between function pointer and void pointer (%0 and %1)">;
3021 def ext_typecheck_comparison_of_pointer_integer : ExtWarn<
3022   "comparison between pointer and integer (%0 and %1)">;
3023 def err_typecheck_comparison_of_pointer_integer : Error<
3024   "comparison between pointer and integer (%0 and %1)">;
3025 def ext_typecheck_comparison_of_distinct_pointers : ExtWarn<
3026   "comparison of distinct pointer types (%0 and %1)">;
3027 def ext_typecheck_cond_incompatible_operands : ExtWarn<
3028   "incompatible operand types (%0 and %1)">;
3029 def err_typecheck_comparison_of_distinct_pointers : Error<
3030   "comparison of distinct pointer types (%0 and %1)">;
3031 def ext_typecheck_comparison_of_distinct_pointers_nonstandard : ExtWarn<
3032   "comparison of distinct pointer types (%0 and %1) uses non-standard "
3033   "composite pointer type %2">;
3034 def err_typecheck_vector_comparison : Error<
3035   "comparison of vector types (%0 and %1) not supported yet">;
3036 def err_typecheck_assign_const : Error<"read-only variable is not assignable">;
3037 def err_stmtexpr_file_scope : Error<
3038   "statement expression not allowed at file scope">;
3039 def warn_mixed_sign_comparison : Warning<
3040   "comparison of integers of different signs: %0 and %1">,
3041   InGroup<SignCompare>, DefaultIgnore;
3042 def warn_mixed_sign_conditional : Warning<
3043   "operands of ? are integers of different signs: %0 and %1">,
3044   InGroup<SignCompare>, DefaultIgnore;
3045 def warn_lunsigned_always_true_comparison : Warning<
3046   "comparison of unsigned%select{| enum}2 expression %0 is always %1">,
3047   InGroup<TautologicalCompare>;
3048 def warn_runsigned_always_true_comparison : Warning<
3049   "comparison of %0 unsigned%select{| enum}2 expression is always %1">,
3050   InGroup<TautologicalCompare>;
3051 def warn_comparison_of_mixed_enum_types : Warning<
3052   "comparison of two values with different enumeration types (%0 and %1)">,
3053   InGroup<DiagGroup<"enum-compare">>;
3054 def warn_null_in_arithmetic_operation : Warning<
3055   "use of NULL in arithmetic operation">,
3056   InGroup<DiagGroup<"null-arithmetic">>;
3057
3058 def err_invalid_this_use : Error<
3059   "invalid use of 'this' outside of a nonstatic member function">;
3060 def err_invalid_member_use_in_static_method : Error<
3061   "invalid use of member %0 in static member function">;
3062 def err_invalid_qualified_function_type : Error<
3063   "type qualifier is not allowed on this function">;
3064 def err_invalid_ref_qualifier_function_type : Error<
3065   "ref-qualifier '%select{&&|&}0' is only allowed on non-static member functions,"
3066   " member function pointers, and typedefs of function types">;
3067 def ext_qualified_function_type_template_arg : ExtWarn<
3068   "template argument of '%0' qualified function type is a GNU extension">, 
3069   InGroup<GNU>;
3070
3071 def err_invalid_qualified_function_pointer : Error<
3072   "type qualifier is not allowed on this function %select{pointer|reference}0">;
3073 def err_invalid_qualified_typedef_function_type_use : Error<
3074   "a qualified function type cannot be used to declare a "
3075   "%select{static member|nonmember}0 function">;
3076 def err_invalid_ref_qualifier_typedef_function_type_use : Error<
3077   "%select{static member|nonmember}0 function cannot have a ref-qualifier "
3078   "'%select{&&|&}1'">;
3079
3080 def err_ref_qualifier_overload : Error<
3081   "cannot overload a member function %select{without a ref-qualifier|with "
3082   "ref-qualifier '&'|with ref-qualifier '&&'}0 with a member function %select{"
3083   "without a ref-qualifier|with ref-qualifier '&'|with ref-qualifier '&&'}1">;
3084
3085 def err_invalid_non_static_member_use : Error<
3086   "invalid use of nonstatic data member %0">;
3087 def err_invalid_incomplete_type_use : Error<
3088   "invalid use of incomplete type %0">;
3089 def err_builtin_func_cast_more_than_one_arg : Error<
3090   "function-style cast to a builtin type can only take one argument">;
3091 def err_builtin_direct_init_more_than_one_arg : Error<
3092   "initializer of a builtin type can only take one argument">;
3093 def err_value_init_for_array_type : Error<
3094   "array types cannot be value-initialized">;
3095 def warn_format_nonliteral_noargs : Warning<
3096   "format string is not a string literal (potentially insecure)">,
3097   InGroup<FormatSecurity>;
3098 def warn_format_nonliteral : Warning<
3099   "format string is not a string literal">,
3100   InGroup<FormatNonLiteral>, DefaultIgnore;
3101
3102 def err_unexpected_interface : Error<
3103   "unexpected interface name %0: expected expression">;
3104 def err_ref_non_value : Error<"%0 does not refer to a value">;
3105 def err_ref_vm_type : Error<
3106   "cannot refer to declaration with a variably modified type inside block">;
3107 def err_ref_array_type : Error<
3108   "cannot refer to declaration with an array type inside block">;
3109 def err_property_not_found : Error<
3110   "property %0 not found on object of type %1">;
3111 def err_invalid_property_name : Error<
3112   "%0 is not a valid property name (accessing an object of type %1)">;
3113 def err_getter_not_found : Error<
3114   "expected getter method not found on object of type %0">;
3115 def err_property_not_found_forward_class : Error<
3116   "property %0 cannot be found in forward class object %1">;
3117 def err_property_not_as_forward_class : Error<
3118   "property %0 refers to an incomplete Objective-C class %1 "
3119   "(with no @interface available)">;
3120 def note_forward_class : Note<
3121   "forward class is declared here">;
3122 def err_duplicate_property : Error<
3123   "property has a previous declaration">;
3124 def ext_gnu_void_ptr : Extension<
3125   "arithmetic on%select{ a|}0 pointer%select{|s}0 to void is a GNU extension">,
3126   InGroup<PointerArith>;
3127 def ext_gnu_ptr_func_arith : Extension<
3128   "arithmetic on%select{ a|}0 pointer%select{|s}0 to%select{ the|}2 function "
3129   "type%select{|s}2 %1%select{| and %3}2 is a GNU extension">,
3130   InGroup<PointerArith>;
3131 def error_readonly_property_assignment : Error<
3132   "assigning to property with 'readonly' attribute not allowed">;
3133 def error_readonly_message_assignment : Error<
3134   "assigning to 'readonly' return result of an objective-c message not allowed">;
3135 def ext_integer_increment_complex : Extension<
3136   "ISO C does not support '++'/'--' on complex integer type %0">;
3137 def ext_integer_complement_complex : Extension<
3138   "ISO C does not support '~' for complex conjugation of %0">;
3139 def error_nosetter_property_assignment : Error<
3140   "setter method is needed to assign to object using property" " assignment syntax">;
3141 def error_no_subobject_property_setting : Error<
3142   "expression is not assignable">;
3143
3144 def ext_freestanding_complex : Extension<
3145   "complex numbers are an extension in a freestanding C99 implementation">;
3146
3147 // FIXME: Remove when we support imaginary.
3148 def err_imaginary_not_supported : Error<"imaginary types are not supported">;
3149
3150 // Obj-c expressions
3151 def warn_root_inst_method_not_found : Warning<
3152   "instance method %0 is being used on 'Class' which is not in the root class">;
3153 def warn_class_method_not_found : Warning<
3154   "class method %objcclass0 not found (return type defaults to 'id')">;
3155 def warn_instance_method_on_class_found : Warning<
3156   "instance method %0 found instead of class method %1">;
3157 def warn_inst_method_not_found : Warning<
3158   "instance method %objcinstance0 not found (return type defaults to 'id')">;
3159 def error_no_super_class_message : Error<
3160   "no @interface declaration found in class messaging of %0">;
3161 def error_root_class_cannot_use_super : Error<
3162   "%0 cannot use 'super' because it is a root class">;
3163 def err_invalid_receiver_to_message : Error<
3164   "invalid receiver to message expression">;
3165 def err_invalid_receiver_to_message_super : Error<
3166   "'super' is only valid in a method body">;
3167 def err_invalid_receiver_class_message : Error<
3168   "receiver type %0 is not an Objective-C class">;
3169 def err_missing_open_square_message_send : Error<
3170   "missing '[' at start of message send expression">;
3171 def warn_bad_receiver_type : Warning<
3172   "receiver type %0 is not 'id' or interface pointer, consider "
3173   "casting it to 'id'">;
3174 def err_bad_receiver_type : Error<"bad receiver type %0">;
3175 def err_unknown_receiver_suggest : Error<
3176   "unknown receiver %0; did you mean %1?">;
3177 def error_objc_throw_expects_object : Error<
3178   "@throw requires an Objective-C object type (%0 invalid)">;
3179 def error_objc_synchronized_expects_object : Error<
3180   "@synchronized requires an Objective-C object type (%0 invalid)">;
3181 def error_rethrow_used_outside_catch : Error<
3182   "@throw (rethrow) used outside of a @catch block">;
3183 def err_attribute_multiple_objc_gc : Error<
3184   "multiple garbage collection attributes specified for type">;
3185 def err_catch_param_not_objc_type : Error<
3186   "@catch parameter is not a pointer to an interface type">;
3187 def err_illegal_qualifiers_on_catch_parm : Error<
3188   "illegal qualifiers on @catch parameter">;
3189 def err_storage_spec_on_catch_parm : Error<
3190   "@catch parameter cannot have storage specifier %select{|'typedef'|'extern'|"
3191   "'static'|'auto'|'register'|'__private_extern__'|'mutable'}0">;
3192 def warn_register_objc_catch_parm : Warning<
3193   "'register' storage specifier on @catch parameter will be ignored">;
3194 def err_qualified_objc_catch_parm : Error<
3195   "@catch parameter declarator cannot be qualified">;
3196 def err_objc_pointer_cxx_catch_gnu : Error<
3197   "can't catch Objective C exceptions in C++ in the GNU runtime">;
3198 def warn_objc_pointer_cxx_catch_fragile : Warning<
3199   "can not catch an exception thrown with @throw in C++ in the non-unified "
3200   "exception model">, InGroup<ObjCNonUnifiedException>;
3201 def err_objc_object_catch : Error<
3202   "can't catch an Objective C object by value">;
3203 def err_incomplete_type_objc_at_encode : Error<
3204   "'@encode' of incomplete type %0">;
3205
3206 def warn_setter_getter_impl_required : Warning<
3207   "property %0 requires method %1 to be defined - "
3208   "use @synthesize, @dynamic or provide a method implementation">;
3209 def warn_setter_getter_impl_required_in_category : Warning<
3210   "property %0 requires method %1 to be defined - "
3211   "use @dynamic or provide a method implementation in category">;
3212 def note_property_impl_required : Note<
3213   "implementation is here">;
3214 def note_parameter_named_here : Note<
3215   "passing argument to parameter %0 here">;
3216 def note_parameter_here : Note<
3217   "passing argument to parameter here">;
3218
3219 // C++ casts
3220 // These messages adhere to the TryCast pattern: %0 is an int specifying the
3221 // cast type, %1 is the source type, %2 is the destination type.
3222 def err_bad_reinterpret_cast_overload : Error<
3223   "reinterpret_cast cannot resolve overloaded function %0 to type %1">;
3224
3225 def err_bad_static_cast_overload : Error<
3226   "address of overloaded function %0 cannot be static_cast to type %1">;
3227
3228 def err_bad_cstyle_cast_overload : Error<
3229   "address of overloaded function %0 cannot be cast to type %1">;
3230
3231
3232 def err_bad_cxx_cast_generic : Error<
3233   "%select{const_cast|static_cast|reinterpret_cast|dynamic_cast|C-style cast|"
3234   "functional-style cast}0 from %1 to %2 is not allowed">;
3235 def err_bad_cxx_cast_rvalue : Error<
3236   "%select{const_cast|static_cast|reinterpret_cast|dynamic_cast|C-style cast|"
3237   "functional-style cast}0 from rvalue to reference type %2">;
3238 def err_bad_cxx_cast_qualifiers_away : Error<
3239   "%select{const_cast|static_cast|reinterpret_cast|dynamic_cast|C-style cast|"
3240   "functional-style cast}0 from %1 to %2 casts away qualifiers">;
3241 def err_bad_const_cast_dest : Error<
3242   "%select{const_cast||||C-style cast|functional-style cast}0 to %2, "
3243   "which is not a reference, pointer-to-object, or pointer-to-data-member">;
3244 def ext_cast_fn_obj : Extension<
3245   "cast between pointer-to-function and pointer-to-object is an extension">;
3246 def err_bad_reinterpret_cast_small_int : Error<
3247   "cast from pointer to smaller type %2 loses information">;
3248 def err_bad_cxx_cast_vector_to_scalar_different_size : Error<
3249   "%select{||reinterpret_cast||C-style cast|}0 from vector %1 " 
3250   "to scalar %2 of different size">;
3251 def err_bad_cxx_cast_scalar_to_vector_different_size : Error<
3252   "%select{||reinterpret_cast||C-style cast|}0 from scalar %1 " 
3253   "to vector %2 of different size">;
3254 def err_bad_cxx_cast_vector_to_vector_different_size : Error<
3255   "%select{||reinterpret_cast||C-style cast|}0 from vector %1 " 
3256   "to vector %2 of different size">;
3257 def err_bad_lvalue_to_rvalue_cast : Error<
3258   "cannot cast from lvalue of type %1 to rvalue reference type %2; types are "
3259   "not compatible">;
3260 def err_bad_static_cast_pointer_nonpointer : Error<
3261   "cannot cast from type %1 to pointer type %2">;
3262 def err_bad_static_cast_member_pointer_nonmp : Error<
3263   "cannot cast from type %1 to member pointer type %2">;
3264 def err_bad_cxx_cast_member_pointer_size : Error<
3265   "cannot %select{||reinterpret_cast||C-style cast|}0 from member pointer "
3266   "type %1 to member pointer type %2 of different size">;
3267 def err_bad_static_cast_incomplete : Error<"%0 is an incomplete type">;
3268 def err_bad_reinterpret_cast_reference : Error<
3269   "reinterpret_cast of a %0 to %1 needs its address which is not allowed">;
3270 def warn_undefined_reinterpret_cast : Warning<
3271   "reinterpret_cast from %0 to %1 has undefined behavior.">,
3272   InGroup<DiagGroup<"undefined-reinterpret-cast">>, DefaultIgnore;
3273
3274 // These messages don't adhere to the pattern.
3275 // FIXME: Display the path somehow better.
3276 def err_ambiguous_base_to_derived_cast : Error<
3277   "ambiguous cast from base %0 to derived %1:%2">;
3278 def err_static_downcast_via_virtual : Error<
3279   "cannot cast %0 to %1 via virtual base %2">;
3280 def err_downcast_from_inaccessible_base : Error<
3281   "cannot cast %select{private|protected}2 base class %1 to %0">;
3282 def err_upcast_to_inaccessible_base : Error<
3283   "cannot cast %0 to its %select{private|protected}2 base class %1">;
3284 def err_bad_dynamic_cast_not_ref_or_ptr : Error<
3285   "%0 is not a reference or pointer">;
3286 def err_bad_dynamic_cast_not_class : Error<"%0 is not a class">;
3287 def err_bad_dynamic_cast_incomplete : Error<"%0 is an incomplete type">;
3288 def err_bad_dynamic_cast_not_ptr : Error<"%0 is not a pointer">;
3289 def err_bad_dynamic_cast_not_polymorphic : Error<"%0 is not polymorphic">;
3290
3291 // Other C++ expressions
3292 def err_need_header_before_typeid : Error<
3293   "you need to include <typeinfo> before using the 'typeid' operator">;
3294 def err_need_header_before_ms_uuidof : Error<
3295   "you need to include <guiddef.h> before using the '__uuidof' operator">;
3296 def err_uuidof_without_guid : Error<
3297   "cannot call operator __uuidof on a type with no GUID">;
3298 def err_incomplete_typeid : Error<"'typeid' of incomplete type %0">;
3299 def err_static_illegal_in_new : Error<
3300   "the 'static' modifier for the array size is not legal in new expressions">;
3301 def err_array_new_needs_size : Error<
3302   "array size must be specified in new expressions">;
3303 def err_bad_new_type : Error<
3304   "cannot allocate %select{function|reference}1 type %0 with new">;
3305 def err_new_incomplete_type : Error<
3306   "allocation of incomplete type %0">;
3307 def err_new_array_nonconst : Error<
3308   "only the first dimension of an allocated array may have dynamic size">;
3309 def err_new_array_init_args : Error<
3310   "array 'new' cannot have initialization arguments">;
3311 def ext_new_paren_array_nonconst : ExtWarn<
3312   "when type is in parentheses, array cannot have dynamic size">;
3313 def err_placement_new_non_placement_delete : Error<
3314   "'new' expression with placement arguments refers to non-placement "
3315   "'operator delete'">;
3316 def err_array_size_not_integral : Error<
3317   "array size expression must have integral or enumerated type, not %0">;
3318 def err_array_size_incomplete_type : Error<
3319   "array size expression has incomplete class type %0">;
3320 def err_array_size_explicit_conversion : Error<
3321   "array size expression of type %0 requires explicit conversion to type %1">;
3322 def note_array_size_conversion : Note<
3323   "conversion to %select{integral|enumeration}0 type %1 declared here">;
3324 def err_array_size_ambiguous_conversion : Error<
3325   "ambiguous conversion of array size expression of type %0 to an integral or "
3326   "enumeration type">;
3327 def ext_array_size_conversion : Extension<
3328   "implicit conversion from array size expression of type %0 to "
3329   "%select{integral|enumeration}1 type %2 is a C++0x extension">,
3330   InGroup<CXX0x>;
3331 def err_address_space_qualified_new : Error<
3332   "'new' cannot allocate objects of type %0 in address space '%1'">;
3333 def err_address_space_qualified_delete : Error<
3334   "'delete' cannot delete objects of type %0 in address space '%1'">;
3335
3336 def err_default_init_const : Error<
3337   "default initialization of an object of const type %0"
3338   "%select{| requires a user-provided default constructor}1">;
3339 def err_delete_operand : Error<"cannot delete expression of type %0">;
3340 def ext_delete_void_ptr_operand : ExtWarn<
3341   "cannot delete expression with pointer-to-'void' type %0">;
3342 def err_ambiguous_delete_operand : Error<"ambiguous conversion of delete "
3343                                          "expression of type %0 to a pointer">;
3344 def warn_delete_incomplete : Warning<
3345   "deleting pointer to incomplete type %0 may cause undefined behaviour">;
3346 def err_delete_incomplete_class_type : Warning<
3347   "deleting incomplete class type %0; no conversions to pointer type">;
3348 def warn_delete_array_type : Warning<
3349   "'delete' applied to a pointer-to-array type %0 treated as delete[]">;
3350 def err_no_suitable_delete_member_function_found : Error<
3351   "no suitable member %0 in %1">;
3352 def err_ambiguous_suitable_delete_member_function_found : Error<
3353   "multiple suitable %0 functions in %1">;
3354 def note_member_declared_here : Note<
3355   "member %0 declared here">;
3356 def err_decrement_bool : Error<"cannot decrement expression of type bool">;
3357 def warn_increment_bool : Warning<
3358   "incrementing expression of type bool is deprecated">, InGroup<Deprecated>;
3359 def ext_catch_incomplete_ptr : ExtWarn<
3360   "ISO C++ forbids catching a pointer to incomplete type %0">;
3361 def ext_catch_incomplete_ref : ExtWarn<
3362   "ISO C++ forbids catching a reference to incomplete type %0">;
3363 def err_catch_incomplete : Error<"cannot catch incomplete type %0">;
3364 def err_catch_rvalue_ref : Error<"cannot catch exceptions by rvalue reference">;
3365 def err_qualified_catch_declarator : Error<
3366   "exception declarator cannot be qualified">;
3367 def err_early_catch_all : Error<"catch-all handler must come last">;
3368 def err_bad_memptr_rhs : Error<
3369   "right hand operand to %0 has non pointer-to-member type %1">;
3370 def err_memptr_rhs_to_incomplete : Error<
3371   "cannot dereference pointer into incomplete class type %0">;
3372 def err_bad_memptr_lhs : Error<
3373   "left hand operand to %0 must be a %select{|pointer to }1class "
3374   "compatible with the right hand operand, but is %2">;
3375 def warn_exception_caught_by_earlier_handler : Warning<
3376   "exception of type %0 will be caught by earlier handler">;
3377 def note_previous_exception_handler : Note<"for type %0">;
3378 def err_exceptions_disabled : Error<
3379   "cannot use '%0' with exceptions disabled">;
3380 def err_objc_exceptions_disabled : Error<
3381   "cannot use '%0' with Objective-C exceptions disabled">;
3382 def warn_non_virtual_dtor : Warning<
3383   "%0 has virtual functions but non-virtual destructor">,
3384   InGroup<NonVirtualDtor>, DefaultIgnore;
3385 def warn_delete_non_virtual_dtor : Warning<
3386   "delete called on %0 that has virtual functions but non-virtual destructor">,
3387   InGroup<DeleteNonVirtualDtor>, DefaultIgnore;
3388 def warn_overloaded_virtual : Warning<
3389   "%q0 hides overloaded virtual %select{function|functions}1">,
3390   InGroup<OverloadedVirtual>, DefaultIgnore;
3391 def note_hidden_overloaded_virtual_declared_here : Note<
3392   "hidden overloaded virtual function %q0 declared here">;
3393 def warn_using_directive_in_header : Warning<
3394   "using namespace directive in global context in header">,
3395   InGroup<HeaderHygiene>, DefaultIgnore;
3396
3397 def err_conditional_void_nonvoid : Error<
3398   "%select{left|right}1 operand to ? is void, but %select{right|left}1 operand "
3399   "is of type %0">;
3400 def err_conditional_ambiguous : Error<
3401   "conditional expression is ambiguous; %0 can be converted to %1 "
3402   "and vice versa">;
3403 def err_conditional_ambiguous_ovl : Error<
3404   "conditional expression is ambiguous; %0 and %1 can be converted to several "
3405   "common types">;
3406
3407 def err_throw_incomplete : Error<
3408   "cannot throw object of incomplete type %0">;
3409 def err_throw_incomplete_ptr : Error<
3410   "cannot throw pointer to object of incomplete type %0">;
3411 def err_return_in_constructor_handler : Error<
3412   "return in the catch of a function try block of a constructor is illegal">;
3413
3414 def err_operator_arrow_circular : Error<
3415   "circular pointer delegation detected">;
3416 def err_pseudo_dtor_base_not_scalar : Error<
3417   "object expression of non-scalar type %0 cannot be used in a "
3418   "pseudo-destructor expression">;
3419 def err_pseudo_dtor_type_mismatch : Error<
3420   "the type of object expression (%0) does not match the type being destroyed "
3421   "(%1) in pseudo-destructor expression">;
3422 def err_pseudo_dtor_call_with_args : Error<
3423   "call to pseudo-destructor cannot have any arguments">;
3424 def err_dtor_expr_without_call : Error<
3425   "%select{destructor reference|pseudo-destructor expression}0 must be "
3426   "called immediately with '()'">;
3427 def err_pseudo_dtor_destructor_non_type : Error<
3428   "%0 does not refer to a type name in pseudo-destructor expression; expected "
3429   "the name of type %1">;
3430 def err_pseudo_dtor_template : Error<
3431   "specialization of template %0 does not refer to a scalar type in pseudo-"
3432   "destructor expression">;
3433 def err_invalid_use_of_function_type : Error<
3434   "a function type is not allowed here">;
3435 def err_invalid_use_of_array_type : Error<"an array type is not allowed here">;
3436 def err_type_defined_in_condition : Error<
3437   "types may not be defined in conditions">;
3438 def err_typecheck_bool_condition : Error<
3439   "value of type %0 is not contextually convertible to 'bool'">;
3440 def err_typecheck_ambiguous_condition : Error<
3441   "conversion from %0 to %1 is ambiguous">;
3442 def err_typecheck_nonviable_condition : Error<
3443   "no viable conversion from %0 to %1">;
3444 def err_typecheck_deleted_function : Error<
3445   "conversion function from %0 to %1 invokes a deleted function">;
3446   
3447 def err_expected_class_or_namespace : Error<"expected a class or namespace">;
3448 def err_missing_qualified_for_redecl : Error<
3449   "must qualify the name %0 to declare %q1 in this scope">;
3450 def err_invalid_declarator_scope : Error<
3451   "definition or redeclaration of %0 not in a namespace enclosing %1">;
3452 def err_invalid_declarator_global_scope : Error<
3453   "definition or redeclaration of %0 cannot name the global scope">;
3454 def err_invalid_declarator_in_function : Error<
3455   "definition or redeclaration of %0 not allowed inside a function">;
3456 def err_not_tag_in_scope : Error<
3457   "no %select{struct|union|class|enum}0 named %1 in %2">;
3458
3459 def err_cannot_form_pointer_to_member_of_reference_type : Error<
3460   "cannot form a pointer-to-member to member %0 of reference type %1">;
3461 def err_invalid_use_of_bound_member_func : Error<
3462   "a bound member function may only be called">;
3463 def err_incomplete_object_call : Error<
3464   "incomplete type in call to object of type %0">;
3465 def err_incomplete_pointer_to_member_return : Error<
3466   "incomplete return type %0 of pointer-to-member constant">;
3467
3468 def warn_condition_is_assignment : Warning<"using the result of an "
3469   "assignment as a condition without parentheses">,
3470   InGroup<Parentheses>;
3471 // Completely identical except off by default.
3472 def warn_condition_is_idiomatic_assignment : Warning<"using the result "
3473   "of an assignment as a condition without parentheses">,
3474   InGroup<DiagGroup<"idiomatic-parentheses">>, DefaultIgnore;
3475 def note_condition_assign_to_comparison : Note<
3476   "use '==' to turn this assignment into an equality comparison">;
3477 def note_condition_or_assign_to_comparison : Note<
3478   "use '!=' to turn this compound assignment into an inequality comparison">;
3479 def note_condition_assign_silence : Note<
3480   "place parentheses around the assignment to silence this warning">;
3481
3482 def warn_equality_with_extra_parens : Warning<"equality comparison with "
3483   "extraneous parentheses">, InGroup<Parentheses>;
3484 def note_equality_comparison_to_assign : Note<
3485   "use '=' to turn this equality comparison into an assignment">;
3486 def note_equality_comparison_silence : Note<
3487   "remove extraneous parentheses around the comparison to silence this warning">;
3488
3489 def warn_synthesized_ivar_access : Warning<
3490   "direct access of synthesized ivar by using property access %0">,
3491   InGroup<NonfragileAbi2>, DefaultIgnore;
3492
3493 def note_global_declared_at : Note<"global variable declared here">;
3494
3495 // assignment related diagnostics (also for argument passing, returning, etc).
3496 // In most of these diagnostics the %2 is a value from the
3497 // Sema::AssignmentAction enumeration
3498 def err_typecheck_convert_incompatible : Error<
3499   "%select{assigning to|passing|returning|converting|initializing|sending|casting}2"
3500   " %0 "
3501   "%select{from incompatible type|to parameter of incompatible type|"
3502   "from a function with incompatible result type|to incompatible type|"
3503   "with an expression of incompatible type|to parameter of incompatible type|"
3504   "to incompatible type}2 %1">;
3505 def warn_incompatible_qualified_id : Warning<
3506   "%select{assigning to|passing|returning|converting|initializing|sending|casting}2"
3507   " %0 "
3508   "%select{from incompatible type|to parameter of incompatible type|"
3509   "from a function with incompatible result type|to incompatible type|"
3510   "with an expression of incompatible type|to parameter of incompatible type|"
3511   "to incompatible type}2 %1">;
3512 def ext_typecheck_convert_pointer_int : ExtWarn<
3513   "incompatible pointer to integer conversion "
3514   "%select{assigning to|passing|returning|converting|initializing|sending|casting}2"
3515   " %0 "
3516   "%select{from|to parameter of type|from a function with result type|to type|"
3517   "with an expression of type|to parameter of type|to type}2 %1">;
3518 def ext_typecheck_convert_int_pointer : ExtWarn<
3519   "incompatible integer to pointer conversion "
3520   "%select{assigning to|passing|returning|converting|initializing|sending|casting}2"
3521   " %0 "
3522   "%select{from|to parameter of type|from a function with result type|to type|"
3523   "with an expression of type|to parameter of type|to type}2 %1">;
3524 def ext_typecheck_convert_pointer_void_func : Extension<
3525   "%select{assigning to|passing|returning|converting|initializing|sending|casting}2"
3526   " %0 "
3527   "%select{from|to parameter of type|from a function with result type|to type|"
3528   "with an expression of type|to parameter of type|to type}2 %1 "
3529   "converts between void pointer and function pointer">;
3530 def ext_typecheck_convert_incompatible_pointer_sign : ExtWarn<
3531   "%select{assigning to|passing|returning|converting|initializing|sending|casting}2"
3532   " %0 "
3533   "%select{from|to parameter of type|from a function with result type|to type|"
3534   "with an expression of type|to parameter of type|to type}2 %1 "
3535   "converts between pointers to integer types with different sign">,
3536   InGroup<DiagGroup<"pointer-sign">>;
3537 def ext_typecheck_convert_incompatible_pointer : ExtWarn<
3538   "incompatible pointer types "
3539   "%select{assigning to|passing|returning|converting|initializing|sending|casting}2"
3540   " %0 "
3541   "%select{from|to parameter of type|from a function with result type|to type|"
3542   "with an expression of type|to parameter of type|to type}2 %1">,
3543   InGroup<DiagGroup<"incompatible-pointer-types">>;
3544 def ext_typecheck_convert_discards_qualifiers : ExtWarn<
3545   "%select{assigning to|passing|returning|converting|initializing|sending|casting}2"
3546   " %0 "
3547   "%select{from|to parameter of type|from a function with result type|to type|"
3548   "with an expression of type|to parameter of type|to type}2 %1 discards "
3549   "qualifiers">;
3550 def ext_nested_pointer_qualifier_mismatch : ExtWarn<
3551   "%select{assigning to|passing|returning|converting|initializing|sending|casting}2"
3552   " %0 "
3553   "%select{from|to parameter of type|from a function with result type|to type|"
3554   "with an expression of type|to parameter of type|to type}2 %1 discards "
3555   "qualifiers in nested pointer types">;
3556 def warn_incompatible_vectors : Warning<
3557   "incompatible vector types "
3558   "%select{assigning to|passing|returning|converting|initializing|sending|casting}2"
3559   " %0 "
3560   "%select{from|to parameter of type|from a function with result type|to type|"
3561   "with an expression of type|to parameter of type|to type}2 %1">,
3562   InGroup<VectorConversions>, DefaultIgnore;
3563 def err_int_to_block_pointer : Error<
3564   "invalid block pointer conversion "
3565   "%select{assigning to|passing|returning|converting|initializing|sending|casting}2"
3566   " %0 "
3567   "%select{from|to parameter of type|from a function with result type|to type|"
3568   "with an expression of type|to parameter of type|to type}2 %1">;
3569 def err_typecheck_convert_incompatible_block_pointer : Error<
3570   "incompatible block pointer types "
3571   "%select{assigning to|passing|returning|converting|initializing|sending|casting}2"
3572   " %0 "
3573   "%select{from|to parameter of type|from a function with result type|to type|"
3574   "with an expression of type|to parameter of type|to type}2 %1">;
3575 def err_typecheck_incompatible_address_space : Error<
3576   "%select{assigning %1 to %0"
3577   "|passing %0 to parameter of type %1"
3578   "|returning %0 from a function with result type %1"
3579   "|converting %0 to type %1"
3580   "|initializing %0 with an expression of type %1"
3581   "|sending %0 to parameter of type %1"
3582   "|casting %0 to type %1}2"
3583   " changes address space of pointer">;
3584 def err_typecheck_incompatible_ownership : Error<
3585   "%select{assigning %1 to %0"
3586   "|passing %0 to parameter of type %1"
3587   "|returning %0 from a function with result type %1"
3588   "|converting %0 to type %1"
3589   "|initializing %0 with an expression of type %1"
3590   "|sending %0 to parameter of type %1"
3591   "|casting %0 to type %1}2"
3592   " changes retain/release properties of pointer">;
3593 def err_typecheck_convert_ambiguous : Error<
3594   "ambiguity in initializing value of type %0 with initializer of type %1">;
3595 def err_typecheck_comparison_of_distinct_blocks : Error<
3596   "comparison of distinct block types (%0 and %1)">;
3597
3598 def err_typecheck_array_not_modifiable_lvalue : Error<
3599   "array type %0 is not assignable">;
3600 def err_typecheck_non_object_not_modifiable_lvalue : Error<
3601   "non-object type %0 is not assignable">;
3602 def err_typecheck_expression_not_modifiable_lvalue : Error<
3603   "expression is not assignable">;
3604 def err_typecheck_incomplete_type_not_modifiable_lvalue : Error<
3605   "incomplete type %0 is not assignable">;
3606 def err_typecheck_lvalue_casts_not_supported : Error<
3607   "assignment to cast is illegal, lvalue casts are not supported">;
3608
3609 def err_typecheck_duplicate_vector_components_not_mlvalue : Error<
3610   "vector is not assignable (contains duplicate components)">;
3611 def err_block_decl_ref_not_modifiable_lvalue : Error<
3612   "variable is not assignable (missing __block type specifier)">;
3613 def err_typecheck_call_not_function : Error<
3614   "called object type %0 is not a function or function pointer">;
3615 def err_call_incomplete_return : Error<
3616   "calling function with incomplete return type %0">;
3617 def err_call_function_incomplete_return : Error<
3618   "calling %0 with incomplete return type %1">;
3619 def note_function_with_incomplete_return_type_declared_here : Note<
3620   "%0 declared here">;
3621 def err_call_incomplete_argument : Error<
3622   "argument type %0 is incomplete">;
3623 def err_typecheck_call_too_few_args : Error<
3624   "too few arguments to %select{function|block|method}0 call, "
3625   "expected %1, have %2">;
3626 def err_typecheck_call_too_few_args_at_least : Error<
3627   "too few arguments to %select{function|block|method}0 call, "
3628   "expected at least %1, have %2">;
3629 def err_typecheck_call_too_many_args : Error<
3630   "too many arguments to %select{function|block|method}0 call, "
3631   "expected %1, have %2">;
3632 def note_typecheck_call_too_many_args : Note<
3633   "%0 declared here">;
3634 def err_typecheck_call_too_many_args_at_most : Error<
3635   "too many arguments to %select{function|block|method}0 call, "
3636   "expected at most %1, have %2">;
3637 def warn_call_wrong_number_of_arguments : Warning<
3638   "too %select{few|many}0 arguments in call to %1">;
3639 def err_atomic_builtin_must_be_pointer : Error<
3640   "first argument to atomic builtin must be a pointer (%0 invalid)">;
3641 def err_atomic_builtin_must_be_pointer_intptr : Error<
3642   "first argument to atomic builtin must be a pointer to integer or pointer"
3643   " (%0 invalid)">;
3644 def err_atomic_builtin_pointer_size : Error<
3645   "first argument to atomic builtin must be a pointer to 1,2,4,8 or 16 byte "
3646   "type (%0 invalid)">;
3647
3648 def err_deleted_function_use : Error<"attempt to use a deleted function">;
3649
3650 def err_kern_type_not_void_return : Error<
3651   "kernel function type %0 must have void return type">;
3652 def err_config_scalar_return : Error<
3653   "CUDA special function 'cudaConfigureCall' must have scalar return type">;
3654 def err_kern_call_not_global_function : Error<
3655   "kernel call to non-global function %0">;
3656
3657
3658 def err_cannot_pass_objc_interface_to_vararg : Error<
3659   "cannot pass object with interface type %0 by-value through variadic "
3660   "%select{function|block|method}1">;
3661
3662 def warn_cannot_pass_non_pod_arg_to_vararg : Warning<
3663   "cannot pass object of %select{non-POD|non-trivial}0 type %1 through variadic"
3664   " %select{function|block|method|constructor}2; call will abort at runtime">,
3665   InGroup<DiagGroup<"non-pod-varargs">>, DefaultError;
3666
3667 def err_typecheck_call_invalid_ordered_compare : Error<
3668   "ordered compare requires two args of floating point type (%0 and %1)">;
3669 def err_typecheck_call_invalid_unary_fp : Error<
3670   "floating point classification requires argument of floating point type "
3671   "(passed in %0)">;
3672 def err_typecheck_cond_expect_scalar : Error<
3673   "used type %0 where arithmetic or pointer type is required">;
3674 def ext_typecheck_cond_one_void : Extension<
3675   "C99 forbids conditional expressions with only one void side">;
3676 def err_typecheck_cond_expect_scalar_or_vector : Error<
3677   "used type %0 where arithmetic, pointer, or vector type is required">;
3678 def err_typecheck_cast_to_incomplete : Error<
3679   "cast to incomplete type %0">;
3680 def ext_typecheck_cast_nonscalar : Extension<
3681   "C99 forbids casting nonscalar type %0 to the same type">;
3682 def ext_typecheck_cast_to_union : Extension<"C99 forbids casts to union type">;
3683 def err_typecheck_cast_to_union_no_type : Error<
3684   "cast to union type from type %0 not present in union">;
3685 def err_cast_pointer_from_non_pointer_int : Error<
3686   "operand of type %0 cannot be cast to a pointer type">;
3687 def err_cast_pointer_to_non_pointer_int : Error<
3688   "pointer cannot be cast to type %0">;
3689 def err_typecheck_expect_scalar_operand : Error<
3690   "operand of type %0 where arithmetic or pointer type is required">;
3691 def err_typecheck_cond_incompatible_operands : Error<
3692   "incompatible operand types (%0 and %1)">;
3693 def ext_typecheck_cond_incompatible_operands_nonstandard : ExtWarn<
3694   "incompatible operand types (%0 and %1) use non-standard composite pointer "
3695   "type %2">;
3696 def err_cast_selector_expr : Error<
3697   "cannot type cast @selector expression">;
3698 def warn_typecheck_cond_incompatible_pointers : ExtWarn<
3699   "pointer type mismatch (%0 and %1)">;
3700 def warn_typecheck_cond_pointer_integer_mismatch : ExtWarn<
3701   "pointer/integer type mismatch in conditional expression (%0 and %1)">;
3702 def err_typecheck_choose_expr_requires_constant : Error<
3703   "'__builtin_choose_expr' requires a constant expression">;
3704 def ext_typecheck_expression_not_constant_but_accepted : Extension<
3705   "expression is not a constant, but is accepted as one by GNU extensions">, 
3706   InGroup<GNU>;
3707 def warn_unused_expr : Warning<"expression result unused">,
3708   InGroup<UnusedValue>;
3709 def warn_unused_voidptr : Warning<
3710   "expression result unused; should this cast be to 'void'?">,
3711   InGroup<UnusedValue>;
3712 def warn_unused_property_expr : Warning<
3713  "property access result unused - getters should not be used for side effects">,
3714   InGroup<UnusedValue>;
3715 def warn_unused_call : Warning<
3716   "ignoring return value of function declared with %0 attribute">,
3717   InGroup<UnusedValue>;
3718
3719 def err_incomplete_type_used_in_type_trait_expr : Error<
3720   "incomplete type %0 used in type trait expression">;
3721 def err_dimension_expr_not_constant_integer : Error<
3722   "dimension expression does not evaluate to a constant unsigned int">;
3723 def err_expected_ident_or_lparen : Error<"expected identifier or '('">;
3724
3725 def err_typecheck_cond_incompatible_operands_null : Error<
3726   "non-pointer operand type %0 incompatible with %select{NULL|nullptr}1">;
3727 } // End of general sema category.
3728
3729 // inline asm.
3730 let CategoryName = "Inline Assembly Issue" in {
3731   def err_asm_wide_character : Error<"wide string is invalid in 'asm'">;
3732   def err_asm_invalid_lvalue_in_output : Error<"invalid lvalue in asm output">;
3733   def err_asm_invalid_output_constraint : Error<
3734     "invalid output constraint '%0' in asm">;
3735   def err_asm_invalid_lvalue_in_input : Error<
3736     "invalid lvalue in asm input for constraint '%0'">;
3737   def err_asm_invalid_input_constraint : Error<
3738     "invalid input constraint '%0' in asm">;
3739   def err_asm_invalid_type_in_input : Error<
3740     "invalid type %0 in asm input for constraint '%1'">;
3741   def err_asm_tying_incompatible_types : Error<
3742     "unsupported inline asm: input with type %0 matching output with type %1">;
3743   def err_asm_unknown_register_name : Error<"unknown register name '%0' in asm">;
3744   def warn_asm_label_on_auto_decl : Warning<
3745     "ignored asm label '%0' on automatic variable">;
3746   def err_invalid_asm_cast_lvalue : Error<
3747     "invalid use of a cast in a inline asm context requiring an l-value: "
3748     "remove the cast or build with -fheinous-gnu-extensions">;
3749
3750   def warn_invalid_asm_cast_lvalue : Warning<
3751     "invalid use of a cast in a inline asm context requiring an l-value: "
3752     "accepted due to -fheinous-gnu-extensions, but clang may remove support "
3753     "for this in the future">;
3754 }
3755
3756 let CategoryName = "Semantic Issue" in {
3757
3758 def err_invalid_conversion_between_vectors : Error<
3759   "invalid conversion between vector type %0 and %1 of different size">;
3760 def err_invalid_conversion_between_vector_and_integer : Error<
3761   "invalid conversion between vector type %0 and integer type %1 "
3762   "of different size">;
3763
3764 def err_invalid_conversion_between_vector_and_scalar : Error<
3765   "invalid conversion between vector type %0 and scalar type %1">;
3766 def err_overload_expr_requires_non_zero_constant : Error<
3767   "overload requires a non-zero constant expression as first argument">;
3768 def err_overload_incorrect_fntype : Error<
3769   "argument is not a function, or has wrong number of parameters">;
3770
3771 // C++ member initializers.
3772 def err_only_constructors_take_base_inits : Error<
3773   "only constructors take base initializers">;
3774
3775 def err_multiple_mem_initialization : Error <
3776   "multiple initializations given for non-static member %0">;
3777 def err_multiple_mem_union_initialization : Error <
3778   "initializing multiple members of anonymous union">;
3779 def err_multiple_base_initialization : Error <
3780   "multiple initializations given for base %0">;
3781
3782 def err_mem_init_not_member_or_class : Error<
3783   "member initializer %0 does not name a non-static data member or base "
3784   "class">;
3785
3786 def warn_initializer_out_of_order : Warning<
3787   "%select{field|base class}0 %1 will be initialized after "
3788   "%select{field|base}2 %3">,
3789   InGroup<Reorder>, DefaultIgnore;
3790
3791 def err_base_init_does_not_name_class : Error<
3792   "constructor initializer %0 does not name a class">;
3793 def err_base_init_direct_and_virtual : Error<
3794   "base class initializer %0 names both a direct base class and an "
3795   "inherited virtual base class">;
3796 def err_not_direct_base_or_virtual : Error<
3797   "type %0 is not a direct or virtual base of %1">;
3798
3799 def err_in_class_initializer_non_const : Error<
3800   "non-const static data member must be initialized out of line">;
3801 def err_in_class_initializer_bad_type : Error<
3802   "static data member of type %0 must be initialized out of line">;
3803 def ext_in_class_initializer_float_type : ExtWarn<
3804   "in-class initializer for static data member of type %0 "
3805   "is a C++0x extension">, InGroup<CXX0xStaticNonIntegralInitializer>;
3806 def err_in_class_initializer_non_constant : Error<
3807   "in-class initializer is not a constant expression">;
3808
3809 def ext_in_class_initializer_non_constant : Extension<
3810  "in-class initializer is not a constant expression, accepted as an extension">;
3811
3812 // C++ anonymous unions and GNU anonymous structs/unions
3813 def ext_anonymous_union : Extension<
3814   "anonymous unions are a GNU extension in C">, InGroup<GNU>;
3815 def ext_anonymous_struct : Extension<
3816   "anonymous structs are a GNU extension">, InGroup<GNU>;
3817 def err_anonymous_union_not_static : Error<
3818   "anonymous unions at namespace or global scope must be declared 'static'">;
3819 def err_anonymous_union_with_storage_spec : Error<
3820   "anonymous union at class scope must not have a storage specifier">;
3821 def err_anonymous_struct_not_member : Error<
3822   "anonymous %select{structs|structs and classes}0 must be "
3823   "%select{struct or union|class}0 members">;
3824 def err_anonymous_union_member_redecl : Error<
3825   "member of anonymous union redeclares %0">;
3826 def err_anonymous_struct_member_redecl : Error<
3827   "member of anonymous struct redeclares %0">;
3828 def err_anonymous_record_with_type : Error<
3829   "types cannot be declared in an anonymous %select{struct|union}0">;
3830 def ext_anonymous_record_with_type : Extension<
3831   "types declared in an anonymous %select{struct|union}0 are a Microsoft "
3832   "extension">, InGroup<Microsoft>;
3833 def err_anonymous_record_with_function : Error<
3834   "functions cannot be declared in an anonymous %select{struct|union}0">;
3835 def err_anonymous_record_with_static : Error<
3836   "static members cannot be declared in an anonymous %select{struct|union}0">;
3837 def err_anonymous_record_bad_member : Error<
3838   "anonymous %select{struct|union}0 can only contain non-static data members">;
3839 def err_anonymous_record_nonpublic_member : Error<
3840   "anonymous %select{struct|union}0 cannot contain a "
3841   "%select{private|protected}1 data member">;
3842 def ext_ms_anonymous_struct : ExtWarn<
3843   "anonymous structs are a Microsoft extension">, InGroup<Microsoft>;
3844
3845 // C++ local classes
3846 def err_reference_to_local_var_in_enclosing_function : Error<
3847   "reference to local variable %0 declared in enclosed function %1">;
3848 def note_local_variable_declared_here : Note<
3849   "%0 declared here">;
3850 def err_static_data_member_not_allowed_in_local_class : Error<
3851   "static data member %0 not allowed in local class %1">; 
3852   
3853 // C++ derived classes
3854 def err_base_clause_on_union : Error<"unions cannot have base classes">;
3855 def err_base_must_be_class : Error<"base specifier must name a class">;
3856 def err_union_as_base_class : Error<"unions cannot be base classes">;
3857 def err_incomplete_base_class : Error<"base class has incomplete type">;
3858 def err_duplicate_base_class : Error<
3859   "base class %0 specified more than once as a direct base class">;
3860 // FIXME: better way to display derivation?  Pass entire thing into diagclient?
3861 def err_ambiguous_derived_to_base_conv : Error<
3862   "ambiguous conversion from derived class %0 to base class %1:%2">;
3863 def err_ambiguous_memptr_conv : Error<
3864   "ambiguous conversion from pointer to member of %select{base|derived}0 "
3865   "class %1 to pointer to member of %select{derived|base}0 class %2:%3">;
3866
3867 def err_memptr_conv_via_virtual : Error<
3868   "conversion from pointer to member of class %0 to pointer to member "
3869   "of class %1 via virtual base %2 is not allowed">;
3870
3871 // C++ access control
3872 def err_conv_to_inaccessible_base : Error<
3873   "conversion from %0 to inaccessible base class %1">, AccessControl;
3874 def note_inheritance_specifier_here : Note<
3875   "'%0' inheritance specifier here">;
3876 def note_inheritance_implicitly_private_here : Note<
3877   "inheritance is implicitly 'private'">;
3878
3879 // C++ member name lookup
3880 def err_ambiguous_member_multiple_subobjects : Error<
3881   "non-static member %0 found in multiple base-class subobjects of type %1:%2">;
3882 def err_ambiguous_member_multiple_subobject_types : Error<
3883   "member %0 found in multiple base classes of different types">;
3884 def note_ambiguous_member_found : Note<"member found by ambiguous name lookup">;
3885 def err_ambiguous_reference : Error<"reference to %0 is ambiguous">;
3886 def note_ambiguous_candidate : Note<"candidate found by name lookup is %q0">;
3887 def err_ambiguous_tag_hiding : Error<"a type named %0 is hidden by a "
3888   "declaration in a different namespace">;
3889 def note_hidden_tag : Note<"type declaration hidden">;
3890 def note_hiding_object : Note<"declaration hides type">;
3891
3892 // C++ operator overloading
3893 def err_operator_overload_needs_class_or_enum : Error<
3894   "overloaded %0 must have at least one parameter of class "
3895   "or enumeration type">;
3896
3897 def err_operator_overload_variadic : Error<"overloaded %0 cannot be variadic">;
3898 def err_operator_overload_static : Error<
3899   "overloaded %0 cannot be a static member function">;
3900 def err_operator_overload_default_arg : Error<
3901   "parameter of overloaded %0 cannot have a default argument">;
3902 def err_operator_overload_must_be : Error<
3903   "overloaded %0 must be a %select{unary|binary|unary or binary}2 operator "
3904   "(has %1 parameter%s1)">;
3905
3906 def err_operator_overload_must_be_member : Error<
3907   "overloaded %0 must be a non-static member function">;
3908 def err_operator_overload_post_incdec_must_be_int : Error<
3909   "parameter of overloaded post-%select{increment|decrement}1 operator must "
3910   "have type 'int' (not %0)">;
3911
3912 // C++ allocation and deallocation functions.
3913 def err_operator_new_delete_declared_in_namespace : Error<
3914   "%0 cannot be declared inside a namespace">;
3915 def err_operator_new_delete_declared_static : Error<
3916   "%0 cannot be declared static in global scope">;
3917 def err_operator_new_delete_invalid_result_type : Error<
3918   "%0 must return type %1">;
3919 def err_operator_new_delete_dependent_result_type : Error<
3920   "%0 cannot have a dependent return type; use %1 instead">;
3921 def err_operator_new_delete_too_few_parameters : Error<
3922   "%0 must have at least one parameter.">;
3923 def err_operator_new_delete_template_too_few_parameters : Error<
3924   "%0 template must have at least two parameters.">;
3925
3926 def err_operator_new_dependent_param_type : Error<
3927   "%0 cannot take a dependent type as first parameter; "
3928   "use size_t (%1) instead">;
3929 def err_operator_new_param_type : Error<
3930   "%0 takes type size_t (%1) as first parameter">;
3931 def err_operator_new_default_arg: Error<
3932   "parameter of %0 cannot have a default argument">;
3933 def err_operator_delete_dependent_param_type : Error<
3934   "%0 cannot take a dependent type as first parameter; use %1 instead">;
3935 def err_operator_delete_param_type : Error<
3936   "first parameter of %0 must have type %1">;
3937
3938 // C++ literal operators
3939 def err_literal_operator_outside_namespace : Error<
3940   "literal operator %0 must be in a namespace or global scope">;
3941 // FIXME: This diagnostic sucks
3942 def err_literal_operator_params : Error<
3943   "parameter declaration for literal operator %0 is not valid">;
3944
3945 // C++ conversion functions
3946 def err_conv_function_not_member : Error<
3947   "conversion function must be a non-static member function">;
3948 def err_conv_function_return_type : Error<
3949   "conversion function cannot have a return type">;
3950 def err_conv_function_with_params : Error<
3951   "conversion function cannot have any parameters">;
3952 def err_conv_function_variadic : Error<
3953   "conversion function cannot be variadic">;
3954 def err_conv_function_to_array : Error<
3955   "conversion function cannot convert to an array type">;
3956 def err_conv_function_to_function : Error<
3957   "conversion function cannot convert to a function type">;
3958 def err_conv_function_with_complex_decl : Error<
3959   "must use a typedef to declare a conversion to %0">;
3960 def err_conv_function_redeclared : Error<
3961   "conversion function cannot be redeclared">;
3962 def warn_conv_to_self_not_used : Warning<
3963   "conversion function converting %0 to itself will never be used">;
3964 def warn_conv_to_base_not_used : Warning<
3965   "conversion function converting %0 to its base class %1 will never be used">;
3966 def warn_conv_to_void_not_used : Warning<
3967   "conversion function converting %0 to %1 will never be used">;
3968
3969 def warn_not_compound_assign : Warning<
3970   "use of unary operator that may be intended as compound assignment (%0=)">;
3971
3972 // C++0x explicit conversion operators
3973 def warn_explicit_conversion_functions : Warning<
3974   "explicit conversion functions are a C++0x extension">, InGroup<CXX0x>;
3975
3976 // C++0x defaulted functions
3977 def err_defaulted_default_ctor_params : Error<
3978   "an explicitly-defaulted default constructor must have no parameters">;
3979 def err_defaulted_copy_ctor_params : Error<
3980   "an explicitly-defaulted copy constructor must have exactly one parameter">;
3981 def err_defaulted_copy_ctor_volatile_param : Error<
3982   "the parameter for an explicitly-defaulted copy constructor may not be "
3983   "volatile">;
3984 def err_defaulted_copy_ctor_const_param : Error<
3985   "the parameter for this explicitly-defaulted copy constructor is const, but "
3986   "a member or base requires it to be non-const">;
3987 def err_defaulted_copy_assign_params : Error<
3988   "an explicitly-defaulted copy assignment operator must have exactly one "
3989   "parameter">;
3990 def err_defaulted_copy_assign_return_type : Error<
3991   "an explicitly-defaulted copy assignment operator must return an unqualified "
3992   "lvalue reference to its class type">;
3993 def err_defaulted_copy_assign_not_ref : Error<
3994   "the parameter for an explicitly-defaulted copy assignment operator must be an "
3995   "lvalue reference type">;
3996 def err_defaulted_copy_assign_volatile_param : Error<
3997   "the parameter for an explicitly-defaulted copy assignment operator may not "
3998   "be volatile">;
3999 def err_defaulted_copy_assign_const_param : Error<
4000   "the parameter for this explicitly-defaulted copy assignment operator is "
4001   "const, but a member or base requires it to be non-const">;
4002 def err_defaulted_copy_assign_quals : Error<
4003   "an explicitly-defaulted copy assignment operator may not have 'const' "
4004   "or 'volatile' qualifiers">;
4005 def err_incorrect_defaulted_exception_spec : Error<
4006   "exception specification of explicitly defaulted %select{default constructor|"
4007   "copy constructor|move constructor|copy assignment operator|move assignment "
4008   "operator|destructor}0 does not match the "
4009   "calculated one">;
4010 def err_out_of_line_default_deletes : Error<
4011   "defaulting this %select{default constructor|copy constructor|move "
4012   "constructor|copy assignment operator|move assignment operator|destructor}0 "
4013   "would delete it after its first declaration">;
4014 def err_defaulted_move_unsupported : Error<
4015   "defaulting move functions not yet supported">;
4016
4017 def warn_array_index_precedes_bounds : Warning<
4018   "array index of '%0' indexes before the beginning of the array">,
4019   InGroup<DiagGroup<"array-bounds">>;
4020 def warn_array_index_exceeds_bounds : Warning<
4021   "array index of '%0' indexes past the end of an array (that contains %1 elements)">,
4022   InGroup<DiagGroup<"array-bounds">>;
4023 def note_array_index_out_of_bounds : Note<
4024   "array %0 declared here">;
4025
4026 def warn_printf_write_back : Warning<
4027   "use of '%%n' in format string discouraged (potentially insecure)">,
4028   InGroup<FormatSecurity>;
4029 def warn_printf_insufficient_data_args : Warning<
4030   "more '%%' conversions than data arguments">, InGroup<Format>;
4031 def warn_printf_data_arg_not_used : Warning<
4032   "data argument not used by format string">, InGroup<FormatExtraArgs>;
4033 def warn_format_invalid_conversion : Warning<
4034   "invalid conversion specifier '%0'">, InGroup<Format>;
4035 def warn_printf_incomplete_specifier : Warning<
4036   "incomplete format specifier">, InGroup<Format>;
4037 def warn_missing_format_string : Warning<
4038   "format string missing">, InGroup<Format>;
4039 def warn_scanf_nonzero_width : Warning<
4040   "zero field width in scanf format string is unused">,
4041   InGroup<Format>;
4042 def warn_printf_conversion_argument_type_mismatch : Warning<
4043   "conversion specifies type %0 but the argument has type %1">,
4044   InGroup<Format>;
4045 def warn_printf_positional_arg_exceeds_data_args : Warning <
4046   "data argument position '%0' exceeds the number of data arguments (%1)">,
4047   InGroup<Format>;
4048 def warn_format_zero_positional_specifier : Warning<
4049   "position arguments in format strings start counting at 1 (not 0)">,
4050   InGroup<Format>;
4051 def warn_format_invalid_positional_specifier : Warning<
4052   "invalid position specified for %select{field width|field precision}0">,
4053   InGroup<Format>;
4054 def warn_format_mix_positional_nonpositional_args : Warning<
4055   "cannot mix positional and non-positional arguments in format string">,
4056   InGroup<Format>;
4057 def warn_null_arg : Warning<
4058   "null passed to a callee which requires a non-null argument">,
4059   InGroup<NonNull>;
4060 def warn_empty_format_string : Warning<
4061   "format string is empty">, InGroup<FormatZeroLength>;
4062 def warn_format_string_is_wide_literal : Warning<
4063   "format string should not be a wide string">, InGroup<Format>;
4064 def warn_printf_format_string_contains_null_char : Warning<
4065   "format string contains '\\0' within the string body">, InGroup<Format>;
4066 def warn_printf_asterisk_missing_arg : Warning<
4067   "'%select{*|.*}0' specified field %select{width|precision}0 is missing a matching 'int' argument">;
4068 def warn_printf_asterisk_wrong_type : Warning<
4069   "field %select{width|precision}0 should have type %1, but argument has type %2">,
4070   InGroup<Format>;
4071 def warn_printf_nonsensical_optional_amount: Warning<
4072   "%select{field width|precision}0 used with '%1' conversion specifier, resulting in undefined behavior">,
4073   InGroup<Format>;
4074 def warn_printf_nonsensical_flag: Warning<
4075   "flag '%0' results in undefined behavior with '%1' conversion specifier">,
4076   InGroup<Format>;
4077 def warn_format_nonsensical_length: Warning<
4078   "length modifier '%0' results in undefined behavior or no effect with '%1' conversion specifier">,
4079   InGroup<Format>;
4080 def warn_printf_ignored_flag: Warning<
4081   "flag '%0' is ignored when flag '%1' is present">,
4082   InGroup<Format>;
4083 def warn_scanf_scanlist_incomplete : Warning<
4084   "no closing ']' for '%%[' in scanf format string">,
4085   InGroup<Format>;
4086   
4087 // CHECK: returning address/reference of stack memory
4088 def warn_ret_stack_addr : Warning<
4089   "address of stack memory associated with local variable %0 returned">;
4090 def warn_ret_stack_ref : Warning<
4091   "reference to stack memory associated with local variable %0 returned">;
4092 def warn_ret_local_temp_addr : Warning<
4093   "returning address of local temporary object">;
4094 def warn_ret_local_temp_ref : Warning<
4095   "returning reference to local temporary object">;
4096 def warn_ret_addr_label : Warning<
4097   "returning address of label, which is local">;
4098 def err_ret_local_block : Error<
4099   "returning block that lives on the local stack">;
4100 def note_ref_var_local_bind : Note<
4101   "binding reference variable %0 here">;
4102
4103
4104 // For non-floating point, expressions of the form x == x or x != x
4105 // should result in a warning, since these always evaluate to a constant.
4106 // Array comparisons have similar warnings
4107 def warn_comparison_always : Warning<
4108   "%select{self-|array }0comparison always evaluates to %select{false|true|a constant}1">,
4109   InGroup<TautologicalCompare>;
4110
4111 def warn_stringcompare : Warning<
4112   "result of comparison against %select{a string literal|@encode}0 is "
4113   "unspecified (use strncmp instead)">;
4114
4115 // Generic selections.
4116 def err_assoc_type_incomplete : Error<
4117   "type %0 in generic association incomplete">;
4118 def err_assoc_type_nonobject : Error<
4119   "type %0 in generic association not an object type">;
4120 def err_assoc_type_variably_modified : Error<
4121   "type %0 in generic association is a variably modified type">;
4122 def err_assoc_compatible_types : Error<
4123   "type %0 in generic association compatible with previously specified type %1">;
4124 def note_compat_assoc : Note<
4125   "compatible type %0 specified here">;
4126 def err_generic_sel_no_match : Error<
4127   "controlling expression type %0 not compatible with any generic association type">;
4128 def err_generic_sel_multi_match : Error<
4129   "controlling expression type %0 compatible with %1 generic association types">;
4130
4131
4132 // Blocks
4133 def err_blocks_disable : Error<"blocks support disabled - compile with -fblocks"
4134   " or pick a deployment target that supports them">;
4135 def err_expected_block_lbrace : Error<"expected '{' in block literal">;
4136 def err_return_in_block_expression : Error<
4137   "return not allowed in block expression literal">;
4138 def err_block_returning_array_function : Error<
4139   "block cannot return %select{array|function}0 type %1">;
4140
4141
4142 // CFString checking
4143 def err_cfstring_literal_not_string_constant : Error<
4144   "CFString literal is not a string constant">;
4145 def warn_cfstring_truncated : Warning<
4146   "input conversion stopped due to an input byte that does not "
4147   "belong to the input codeset UTF-8">;
4148
4149 // Statements.
4150 def err_continue_not_in_loop : Error<
4151   "'continue' statement not in loop statement">;
4152 def err_break_not_in_loop_or_switch : Error<
4153   "'break' statement not in loop or switch statement">;
4154 def err_default_not_in_switch : Error<
4155   "'default' statement not in switch statement">;
4156 def err_case_not_in_switch : Error<"'case' statement not in switch statement">;
4157 def warn_bool_switch_condition : Warning<
4158   "switch condition has boolean value">;
4159 def warn_case_value_overflow : Warning<
4160   "overflow converting case value to switch condition type (%0 to %1)">,
4161   InGroup<DiagGroup<"switch">>;
4162 def err_duplicate_case : Error<"duplicate case value '%0'">;
4163 def warn_case_empty_range : Warning<"empty case range specified">;
4164 def warn_missing_case_for_condition :
4165   Warning<"no case matching constant switch condition '%0'">;
4166 def warn_missing_case1 : Warning<"enumeration value %0 not handled in switch">,
4167   InGroup<DiagGroup<"switch-enum"> >;
4168 def warn_missing_case2 : Warning<
4169   "enumeration values %0 and %1 not handled in switch">,
4170   InGroup<DiagGroup<"switch-enum"> >;
4171 def warn_missing_case3 : Warning<
4172   "enumeration values %0, %1, and %2 not handled in switch">,
4173   InGroup<DiagGroup<"switch-enum"> >;
4174 def warn_missing_cases : Warning<
4175   "%0 enumeration values not handled in switch: %1, %2, %3...">,
4176   InGroup<DiagGroup<"switch-enum"> >;
4177
4178 def warn_not_in_enum : Warning<"case value not in enumerated type %0">,
4179   InGroup<DiagGroup<"switch-enum"> >; 
4180 def err_typecheck_statement_requires_scalar : Error<
4181   "statement requires expression of scalar type (%0 invalid)">;
4182 def err_typecheck_statement_requires_integer : Error<
4183   "statement requires expression of integer type (%0 invalid)">;
4184 def err_multiple_default_labels_defined : Error<
4185   "multiple default labels in one switch">;
4186 def err_switch_multiple_conversions : Error<
4187   "multiple conversions from switch condition type %0 to an integral or "
4188   "enumeration type">;
4189 def note_switch_conversion : Note<
4190   "conversion to %select{integral|enumeration}0 type %1">;
4191 def err_switch_explicit_conversion : Error<
4192   "switch condition type %0 requires explicit conversion to %1">;
4193 def err_switch_incomplete_class_type : Error<
4194   "switch condition has incomplete class type %0">;
4195 def warn_empty_if_body : Warning<
4196   "if statement has empty body">, InGroup<EmptyBody>;
4197
4198 def err_va_start_used_in_non_variadic_function : Error<
4199   "'va_start' used in function with fixed args">;
4200 def warn_second_parameter_of_va_start_not_last_named_argument : Warning<
4201   "second parameter of 'va_start' not last named argument">;
4202 def err_first_argument_to_va_arg_not_of_type_va_list : Error<
4203   "first argument to 'va_arg' is of type %0 and not 'va_list'">;
4204 def err_second_parameter_to_va_arg_incomplete: Error<
4205   "second argument to 'va_arg' is of incomplete type %0">;
4206 def err_second_parameter_to_va_arg_abstract: Error<
4207   "second argument to 'va_arg' is of abstract type %0">;
4208 def warn_second_parameter_to_va_arg_not_pod : Warning<
4209   "second argument to 'va_arg' is of non-POD type %0">,
4210   InGroup<DiagGroup<"non-pod-varargs">>, DefaultError;
4211 def warn_second_parameter_to_va_arg_never_compatible : Warning<
4212   "second argument to 'va_arg' is of promotable type %0; this va_arg has "
4213   "undefined behavior because arguments will be promoted to %1">;
4214
4215 def warn_return_missing_expr : Warning<
4216   "non-void %select{function|method}1 %0 should return a value">, DefaultError,
4217   InGroup<ReturnType>;
4218 def ext_return_missing_expr : ExtWarn<
4219   "non-void %select{function|method}1 %0 should return a value">, DefaultError,
4220   InGroup<ReturnType>;
4221 def ext_return_has_expr : ExtWarn<
4222   "%select{void function|void method|constructor|destructor}1 %0 "
4223   "should not return a value">,
4224   DefaultError, InGroup<ReturnType>;
4225 def ext_return_has_void_expr : Extension<
4226   "void %select{function|method}1 %0 should not return void expression">;
4227 def warn_noreturn_function_has_return_expr : Warning<
4228   "function %0 declared 'noreturn' should not return">,
4229   InGroup<DiagGroup<"invalid-noreturn">>;
4230 def warn_falloff_noreturn_function : Warning<
4231   "function declared 'noreturn' should not return">,
4232   InGroup<DiagGroup<"invalid-noreturn">>;
4233 def err_noreturn_block_has_return_expr : Error<
4234   "block declared 'noreturn' should not return">;
4235 def err_block_on_nonlocal : Error<
4236   "__block attribute not allowed, only allowed on local variables">;
4237 def err_block_on_vm : Error<
4238   "__block attribute not allowed on declaration with a variably modified type">;
4239
4240 def err_shufflevector_non_vector : Error<
4241   "first two arguments to __builtin_shufflevector must be vectors">;
4242 def err_shufflevector_incompatible_vector : Error<
4243   "first two arguments to __builtin_shufflevector must have the same type">;
4244 def err_shufflevector_nonconstant_argument : Error<
4245   "index for __builtin_shufflevector must be a constant integer">;
4246 def err_shufflevector_argument_too_large : Error<
4247   "index for __builtin_shufflevector must be less than the total number "
4248   "of vector elements">;
4249
4250 def err_vector_incorrect_num_initializers : Error<
4251   "%select{too many|too few}0 elements in vector initialization (expected %1 elements, have %2)">;
4252 def err_altivec_empty_initializer : Error<"expected initializer">;
4253
4254 def err_invalid_neon_type_code : Error<
4255   "incompatible constant for this __builtin_neon function">; 
4256 def err_argument_invalid_range : Error<
4257   "argument should be a value from %0 to %1">;
4258
4259 def err_builtin_longjmp_invalid_val : Error<
4260   "argument to __builtin_longjmp must be a constant 1">;
4261
4262 def err_constant_integer_arg_type : Error<
4263   "argument to %0 must be a constant integer">;
4264
4265 def ext_mixed_decls_code : Extension<
4266   "ISO C90 forbids mixing declarations and code">,
4267   InGroup<DiagGroup<"declaration-after-statement">>;
4268   
4269 def err_non_variable_decl_in_for : Error<
4270   "declaration of non-local variable in 'for' loop">;
4271 def err_toomany_element_decls : Error<
4272   "only one element declaration is allowed">;
4273 def err_selector_element_not_lvalue : Error<
4274   "selector element is not a valid lvalue">;
4275 def err_selector_element_type : Error<
4276   "selector element type %0 is not a valid object">;
4277 def err_collection_expr_type : Error<
4278   "collection expression type %0 is not a valid object">;
4279 def warn_collection_expr_type : Warning<
4280   "collection expression type %0 may not respond to %1">;
4281
4282 def err_invalid_conversion_between_ext_vectors : Error<
4283   "invalid conversion between ext-vector type %0 and %1">;
4284
4285 // Type
4286 def ext_invalid_sign_spec : Extension<"'%0' cannot be signed or unsigned">;
4287 def warn_receiver_forward_class : Warning<
4288     "receiver %0 is a forward class and corresponding @interface may not exist">;
4289 def note_method_sent_forward_class : Note<"method %0 is used for the forward class">;
4290 def ext_missing_declspec : ExtWarn<
4291   "declaration specifier missing, defaulting to 'int'">;
4292 def ext_missing_type_specifier : ExtWarn<
4293   "type specifier missing, defaults to 'int'">,
4294   InGroup<ImplicitInt>;
4295 def err_decimal_unsupported : Error<
4296   "GNU decimal type extension not supported">;
4297 def err_missing_type_specifier : Error<
4298   "C++ requires a type specifier for all declarations">;
4299 def err_missing_param_declspec : Error<
4300   "parameter requires a declaration specifier">;
4301 def err_objc_array_of_interfaces : Error<
4302   "array of interface %0 is invalid (probably should be an array of pointers)">;
4303 def ext_c99_array_usage : Extension<
4304   "use of C99-specific array features, accepted as an extension">;
4305 def err_c99_array_usage_cxx : Error<
4306   "C99-specific array features are not permitted in C++">;
4307 def err_double_requires_fp64 : Error<
4308   "use of type 'double' requires cl_khr_fp64 extension to be enabled">;
4309   
4310 def note_getter_unavailable : Note<
4311   "or because setter is declared here, but no getter method %0 is found">;
4312 def err_invalid_protocol_qualifiers : Error<
4313   "invalid protocol qualifiers on non-ObjC type">;
4314 def warn_ivar_use_hidden : Warning<
4315   "local declaration of %0 hides instance variable">;
4316 def error_ivar_use_in_class_method : Error<
4317   "instance variable %0 accessed in class method">;
4318 def error_implicit_ivar_access : Error<
4319   "instance variable %0 cannot be accessed because 'self' has been redeclared">;
4320 def error_private_ivar_access : Error<"instance variable %0 is private">,
4321   AccessControl;
4322 def error_protected_ivar_access : Error<"instance variable %0 is protected">,
4323   AccessControl;
4324 def warn_maynot_respond : Warning<"%0 may not respond to %1">;
4325 def warn_attribute_method_def : Warning<
4326   "method attribute can only be specified on method declarations">;
4327 def ext_typecheck_base_super : Warning<
4328   "method parameter type %0 does not match "
4329   "super class method parameter type %1">, InGroup<SuperSubClassMismatch>, DefaultIgnore;
4330
4331 // Spell-checking diagnostics
4332 def err_unknown_typename_suggest : Error<
4333   "unknown type name %0; did you mean %1?">;
4334 def err_unknown_nested_typename_suggest : Error<
4335   "no type named %0 in %1; did you mean %2?">;
4336 def err_no_member_suggest : Error<"no member named %0 in %1; did you mean %2?">;
4337 def err_undeclared_use_suggest : Error<
4338   "use of undeclared %0; did you mean %1?">;
4339 def err_undeclared_var_use_suggest : Error<
4340   "use of undeclared identifier %0; did you mean %1?">;
4341 def err_no_template_suggest : Error<"no template named %0; did you mean %1?">;
4342 def err_no_member_template_suggest : Error<
4343   "no template named %0 in %1; did you mean %2?">;
4344 def err_mem_init_not_member_or_class_suggest : Error<
4345   "initializer %0 does not name a non-static data member or base "
4346   "class; did you mean the %select{base class|member}1 %2?">;
4347 def err_field_designator_unknown_suggest : Error<
4348   "field designator %0 does not refer to any field in type %1; did you mean "
4349   "%2?">;
4350 def err_typecheck_member_reference_ivar_suggest : Error<
4351   "%0 does not have a member named %1; did you mean %2?">;
4352 def err_property_not_found_suggest : Error<
4353   "property %0 not found on object of type %1; did you mean %2?">;
4354 def err_ivar_access_using_property_syntax_suggest : Error<
4355   "property %0 not found on object of type %1; did you mean to access ivar %2?">;
4356 def err_property_found_suggest : Error<
4357   "property %0 found on object of type %1; did you mean to access "
4358   "it with the \".\" operator?">;
4359 def err_undef_interface_suggest : Error<
4360   "cannot find interface declaration for %0; did you mean %1?">;
4361 def warn_undef_interface_suggest : Warning<
4362   "cannot find interface declaration for %0; did you mean %1?">;
4363 def err_undef_superclass_suggest : Error<
4364   "cannot find interface declaration for %0, superclass of %1; did you mean "
4365   "%2?">;
4366 def err_undeclared_protocol_suggest : Error<
4367   "cannot find protocol declaration for %0; did you mean %1?">;
4368 def note_base_class_specified_here : Note<
4369   "base class %0 specified here">;
4370 def err_using_directive_suggest : Error<
4371   "no namespace named %0; did you mean %1?">;
4372 def err_using_directive_member_suggest : Error<
4373   "no namespace named %0 in %1; did you mean %2?">;
4374 def note_namespace_defined_here : Note<"namespace %0 defined here">;
4375 def err_sizeof_pack_no_pack_name_suggest : Error<
4376   "%0 does not refer to the name of a parameter pack; did you mean %1?">;
4377 def note_parameter_pack_here : Note<"parameter pack %0 declared here">;
4378
4379 def err_uncasted_use_of_unknown_any : Error<
4380   "%0 has unknown type;  cast it to its declared type to use it">;
4381 def err_uncasted_call_of_unknown_any : Error<
4382   "%0 has unknown return type;  cast the call to its declared return type">;
4383 def err_unsupported_unknown_any_decl : Error<
4384   "%0 has unknown type, which is unsupported for this kind of declaration">;
4385 def err_unsupported_unknown_any_expr : Error<
4386   "unsupported expression with unknown type">;
4387 def err_unsupported_unknown_any_call : Error<
4388   "call to unsupported expression with unknown type">;
4389 def err_unknown_any_addrof : Error<
4390   "the address of a declaration with unknown type "
4391   "can only be cast to a pointer type">;
4392 def err_unknown_any_var_function_type : Error<
4393   "variable %0 with unknown type cannot be given a function type">;
4394
4395 def err_filter_expression_integral : Error<
4396   "filter expression type should be an integral value not %0">;
4397
4398 // OpenCL warnings and errors.
4399 def err_invalid_astype_of_different_size : Error<
4400   "invalid reinterpretation: sizes of %0 and %1 must match">;
4401
4402 } // end of sema category
4403
4404 let CategoryName = "Related Result Type Issue" in {
4405 // Objective-C related result type compatibility
4406 def warn_related_result_type_compatibility_class : Warning<
4407   "method is expected to return an instance of its class type %0, but "
4408   "is declared to return %1">;
4409 def warn_related_result_type_compatibility_protocol : Warning<
4410   "protocol method is expected to return an instance of the implementing "
4411   "class, but is declared to return %0">;
4412 def note_related_result_type_overridden : Note<
4413   "overridden method is part of the '%select{|alloc|copy|init|mutableCopy|"
4414   "new|autorelease|dealloc|release|retain|retainCount|self}0' method family">;
4415 def note_related_result_type_inferred : Note<
4416   "%select{class|instance}0 method %1 is assumed to return an instance of "
4417   "its receiver type (%2)">;
4418
4419 }
4420
4421 } // end of sema component.
4422