Lines Matching full:dereference
2 // RUN: %clang_cc1 -triple i386-apple-darwin10 -analyze -analyzer-checker=core,alpha.core,osx.cocoa.AtSync -analyzer-store=region -analyzer-constraints=range -verify -fblocks -Wno-unreachable-code -Wno-null-dereference -Wno-objc-root-class %s
3 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -analyze -analyzer-checker=core,alpha.core,osx.cocoa.AtSync -analyzer-store=region -analyzer-constraints=range -verify -fblocks -Wno-unreachable-code -Wno-null-dereference -Wno-objc-root-class %s
149 *p = 0xDEADBEEF; // expected-warning{{Dereference of undefined pointer value}}
259 *p = 1; // expected-warning{{Dereference of null pointer}}
416 // <rdar://problem/7062158> false positive null dereference due to
631 *p = 0xDEADBEEF; // expected-warning{{Dereference of null pointer}}
885 // Not a null dereference.
959 if (1 && *({ // expected-warning{{Dereference of null pointer}}
1096 *p = 0xDEADBEEF; // expected-warning{{Dereference of null pointer}}
1129 // <rdar://problem/6352035> rule request: direct structure member access null pointer dereference
1140 friend->c = 7; // expected-warning{{Access to instance variable 'c' results in a dereference of a null pointer (loaded from variable 'friend')}}
1144 c = 7; // expected-warning{{Access to instance variable 'c' results in a dereference of a null pointer (loaded from variable 'self')}}
1164 // PR 8440 - False null dereference during store to array-in-field-in-global.