forked from OSchip/llvm-project
49 lines
1.2 KiB
Mathematica
49 lines
1.2 KiB
Mathematica
|
// RUN: clang-cc -analyze -checker-cfref -analyzer-constraints=basic -analyzer-store=basic %s -verify
|
||
|
|
||
|
@interface MyClass {}
|
||
|
- (void *)voidPtrM;
|
||
|
- (int)intM;
|
||
|
- (long long)longlongM;
|
||
|
- (double)doubleM;
|
||
|
- (long double)longDoubleM;
|
||
|
@end
|
||
|
@implementation MyClass
|
||
|
- (void *)voidPtrM { return (void *)0; }
|
||
|
- (int)intM { return 0; }
|
||
|
- (long long)longlongM { return 0; }
|
||
|
- (double)doubleM { return 0.0; }
|
||
|
- (long double)longDoubleM { return 0.0; }
|
||
|
@end
|
||
|
|
||
|
void createFoo() {
|
||
|
MyClass *obj = 0;
|
||
|
|
||
|
void *v = [obj voidPtrM]; // no-warning
|
||
|
int i = [obj intM]; // no-warning
|
||
|
}
|
||
|
|
||
|
void createFoo2() {
|
||
|
MyClass *obj = 0;
|
||
|
|
||
|
long double ld = [obj longDoubleM]; // expected-warning{{The receiver in the message expression is 'nil' and results in the returned value}}
|
||
|
}
|
||
|
|
||
|
void createFoo3() {
|
||
|
MyClass *obj = 0;
|
||
|
|
||
|
long long ll = [obj longlongM]; // expected-warning{{The receiver in the message expression is 'nil' and results in the returned value}}
|
||
|
}
|
||
|
|
||
|
void createFoo4() {
|
||
|
MyClass *obj = 0;
|
||
|
|
||
|
double d = [obj doubleM]; // expected-warning{{The receiver in the message expression is 'nil' and results in the returned value}}
|
||
|
}
|
||
|
|
||
|
void createFoo5() {
|
||
|
MyClass *obj = @"";
|
||
|
|
||
|
double d = [obj doubleM]; // no-warning
|
||
|
}
|
||
|
|