diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2014-12-02 22:42:52 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2014-12-02 22:42:52 +0000 |
commit | 334becf46a5ee2defd9f392b1d1243b451deb605 (patch) | |
tree | 9b2bf6e501830febaeeda4d5018e47b01ece15a2 | |
parent | 7f8cf5bff7c8a87a878f684fe50a739929a416de (diff) | |
download | bcm5719-llvm-334becf46a5ee2defd9f392b1d1243b451deb605.tar.gz bcm5719-llvm-334becf46a5ee2defd9f392b1d1243b451deb605.zip |
Another warning with no group name bites the dust.
rdar://19116886
llvm-svn: 223168
-rw-r--r-- | clang/include/clang/Basic/DiagnosticSemaKinds.td | 3 | ||||
-rw-r--r-- | clang/test/Misc/warning-flags.c | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/clang/include/clang/Basic/DiagnosticSemaKinds.td b/clang/include/clang/Basic/DiagnosticSemaKinds.td index 75e78bf5ec9..7e85675c4db 100644 --- a/clang/include/clang/Basic/DiagnosticSemaKinds.td +++ b/clang/include/clang/Basic/DiagnosticSemaKinds.td @@ -585,7 +585,8 @@ def warn_atprotocol_protocol : Warning< "@protocol is using a forward protocol declaration of %0">, InGroup<AtProtocol>; def warn_readonly_property : Warning< "attribute 'readonly' of property %0 restricts attribute " - "'readwrite' of property inherited from %1">; + "'readwrite' of property inherited from %1">, + InGroup<PropertyAttr>; def warn_property_attribute : Warning< "'%1' attribute on property %0 does not match the property inherited from %2">, diff --git a/clang/test/Misc/warning-flags.c b/clang/test/Misc/warning-flags.c index 2afa88f5dff..4e861b423aa 100644 --- a/clang/test/Misc/warning-flags.c +++ b/clang/test/Misc/warning-flags.c @@ -18,7 +18,7 @@ This test serves two purposes: The list of warnings below should NEVER grow. It should gradually shrink to 0. -CHECK: Warnings without flags (98): +CHECK: Warnings without flags (97): CHECK-NEXT: ext_excess_initializers CHECK-NEXT: ext_excess_initializers_in_char_array_initializer CHECK-NEXT: ext_expected_semi_decl_list @@ -103,7 +103,6 @@ CHECK-NEXT: warn_pp_line_decimal CHECK-NEXT: warn_pragma_pack_pop_identifer_and_alignment CHECK-NEXT: warn_pragma_pack_show CHECK-NEXT: warn_property_getter_owning_mismatch -CHECK-NEXT: warn_readonly_property CHECK-NEXT: warn_register_objc_catch_parm CHECK-NEXT: warn_related_result_type_compatibility_class CHECK-NEXT: warn_related_result_type_compatibility_protocol |