2012-06-09 05:14:25 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
|
|
|
|
typedef unsigned char BOOL;
|
|
|
|
|
|
|
|
@interface BaseObject
|
|
|
|
+ (instancetype)new;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface NSObject : BaseObject
|
|
|
|
- (BOOL)isEqual:(id)other;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface NSNumber : NSObject
|
|
|
|
+ (NSNumber *)numberWithInt:(int)value;
|
|
|
|
+ (NSNumber *)numberWithDouble:(double)value;
|
|
|
|
+ (NSNumber *)numberWithBool:(BOOL)value;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface NSArray : NSObject
|
|
|
|
+ (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface NSDictionary : NSObject
|
|
|
|
+ (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface NSString : NSObject
|
|
|
|
@end
|
|
|
|
|
|
|
|
void testComparisonsWithFixits(id obj) {
|
2012-07-18 01:46:40 +08:00
|
|
|
if (obj == @"") return; // expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
|
|
|
|
if (obj != @"") return; // expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
|
|
|
|
if (@"" == obj) return; // expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
|
|
|
|
if (@"" == @"") return; // expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
|
|
|
|
|
|
|
|
if (@[] == obj) return; // expected-warning{{direct comparison of an array literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
|
|
|
|
if (@{} == obj) return; // expected-warning{{direct comparison of a dictionary literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
|
|
|
|
if (@12 == obj) return; // expected-warning{{direct comparison of a numeric literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
|
|
|
|
if (@1.0 == obj) return; // expected-warning{{direct comparison of a numeric literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
|
|
|
|
if (@__objc_yes == obj) return; // expected-warning{{direct comparison of a numeric literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
|
|
|
|
if (@(1+1) == obj) return; // expected-warning{{direct comparison of a boxed expression has undefined behavior}} expected-note{{use 'isEqual:' instead}}
|
2012-06-09 05:14:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@interface BadEqualReturnString : NSString
|
|
|
|
- (void)isEqual:(id)other;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface BadEqualArgString : NSString
|
|
|
|
- (BOOL)isEqual:(int)other;
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
void testComparisonsWithoutFixits() {
|
2012-07-18 01:46:40 +08:00
|
|
|
if ([BaseObject new] == @"") return; // expected-warning{{direct comparison of a string literal has undefined behavior}}
|
2012-06-09 05:14:25 +08:00
|
|
|
|
2012-07-18 01:46:40 +08:00
|
|
|
if ([BadEqualReturnString new] == @"") return; // expected-warning{{direct comparison of a string literal has undefined behavior}}
|
|
|
|
if ([BadEqualArgString new] == @"") return; // expected-warning{{direct comparison of a string literal has undefined behavior}}
|
2012-06-09 05:14:25 +08:00
|
|
|
|
2012-07-18 01:46:40 +08:00
|
|
|
if (@"" < @"") return; // expected-warning{{direct comparison of a string literal has undefined behavior}}
|
|
|
|
if (@"" > @"") return; // expected-warning{{direct comparison of a string literal has undefined behavior}}
|
|
|
|
if (@"" <= @"") return; // expected-warning{{direct comparison of a string literal has undefined behavior}}
|
|
|
|
if (@"" >= @"") return; // expected-warning{{direct comparison of a string literal has undefined behavior}}
|
2012-06-09 05:14:25 +08:00
|
|
|
}
|
|
|
|
|