def pp_undef_builtin_macro : Warning<"undefining builtin macro">;
def pp_redef_builtin_macro : Warning<"redefining builtin macro">;
def pp_macro_not_used : Warning<"macro is not used">, DefaultIgnore,
- IsGroup<"unused-macros">;
+ InGroup<DiagGroup<"unused-macros">>;
def warn_pp_undef_identifier : Warning<
"%0 is not defined, evaluates to 0">,
- IsGroup<"undef">, DefaultIgnore;
+ InGroup<DiagGroup<"undef">>, DefaultIgnore;
def pp_invalid_string_literal : Warning<
"invalid string literal, ignoring final '\\'">;
def ext_pp_warning_directive : Extension<"#warning is a language extension">;
def ext_pp_extra_tokens_at_eol : ExtWarn<
- "extra tokens at end of #%0 directive">, IsGroup<"extra-tokens">;
+ "extra tokens at end of #%0 directive">, InGroup<DiagGroup<"extra-tokens">>;
def ext_pp_comma_expr : Extension<"comma operator in operand of #if">;
def ext_pp_bad_vaargs_use : Extension<
def error_property_implemented : Error<"property %0 is already implemented">;
def warn_objc_property_attr_mutually_exclusive : Warning<
"property attributes '%0' and '%1' are mutually exclusive">,
- IsGroup<"readonly-setter-attrs">, DefaultIgnore;
+ InGroup<DiagGroup<"readonly-setter-attrs">>, DefaultIgnore;
// C++ declarations
def err_static_assert_expression_is_not_constant : Error<
def err_undeclared_var_use : Error<"use of undeclared identifier %0">;
def err_undeclared_use : Error<"use of undeclared '%0'">;
def warn_deprecated : Warning<"%0 is deprecated">,
- IsGroup<"deprecated-declarations">;
+ InGroup<DiagGroup<"deprecated-declarations">>;
def warn_unavailable : Warning<"%0 is unavailable">;
def note_unavailable_here : Note<
"function has been explicitly marked %select{unavailable|deleted}0 here">;
def warn_missing_prototype : Warning<
"no previous prototype for function %0">,
- IsGroup<"missing-prototypes">, DefaultIgnore;
+ InGroup<DiagGroup<"missing-prototypes">>, DefaultIgnore;
def err_redefinition : Error<"redefinition of %0">;
def err_static_non_static : Error<
"static declaration of %0 follows non-static declaration">;
"using extended field designator is an extension">;
def warn_floatingpoint_eq : Warning<
"comparing floating point with == or != is unsafe">,
- IsGroup<"float-equal">, DefaultIgnore;
+ InGroup<DiagGroup<"float-equal">>, DefaultIgnore;
def err_typecheck_subscript_value : Error<
"subscripted value is neither array nor pointer">;
"array types cannot be value-initialized">;
def warn_printf_not_string_constant : Warning<
"format string is not a string literal (potentially insecure)">,
- IsGroup<"format-nonliteral">;
+ InGroup<DiagGroup<"format-nonliteral">>;
def err_unexpected_interface : Error<
"unexpected interface name %0: expected expression">;
"%2 %1 converts between void* and function pointer, expected %0">;
def ext_typecheck_convert_incompatible_pointer_sign : ExtWarn<
"pointer types point to integer types with different sign %2 %1, expected %0">,
- IsGroup<"pointer-sign">;
+ InGroup<DiagGroup<"pointer-sign">>;
def ext_typecheck_convert_incompatible_pointer : ExtWarn<
"incompatible pointer types %2 %1, expected %0">;
def ext_typecheck_convert_discards_qualifiers : ExtWarn<