2010-05-06 10:59:29 +08:00
|
|
|
// RUN: %clang_cc1 -analyze -analyzer-check-objc-mem -analyzer-inline-call -analyzer-store region -verify %s
|
2010-11-01 17:09:44 +08:00
|
|
|
|
2010-04-20 13:48:57 +08:00
|
|
|
struct A {
|
|
|
|
int x;
|
|
|
|
A(int a) { x = a; }
|
|
|
|
int getx() { return x; }
|
|
|
|
};
|
|
|
|
|
|
|
|
void f1() {
|
|
|
|
A x(3);
|
|
|
|
if (x.getx() == 3) {
|
|
|
|
int *p = 0;
|
|
|
|
*p = 3; // expected-warning{{Dereference of null pointer}}
|
|
|
|
} else {
|
|
|
|
int *p = 0;
|
|
|
|
*p = 3; // no-warning
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|