Objective-C. Make -Wselector-type-mismatch off by

default until we provide a work-around for warning
suppression.

llvm-svn: 205066
This commit is contained in:
Fariborz Jahanian 2014-03-28 23:23:12 +00:00
parent 6af9bc565e
commit 6e94302ee3
2 changed files with 2 additions and 2 deletions

View File

@ -907,7 +907,7 @@ def warn_unimplemented_protocol_method : Warning<
def warning_multiple_selectors: Warning<
"several methods with selector %0 of mismatched types are found "
"for the @selector expression">,
InGroup<SelectorTypeMismatch>;
InGroup<SelectorTypeMismatch>, DefaultIgnore;
// C++ declarations
def err_static_assert_expression_is_not_constant : Error<
"static_assert expression is not an integral constant expression">;

View File

@ -1,4 +1,4 @@
// RUN: %clang_cc1 -verify %s
// RUN: %clang_cc1 -Wselector-type-mismatch -verify %s
@interface I
- (id) compare: (char) arg1; // expected-note {{method 'compare:' declared here}}