teak-llvm/clang/test/Analysis/inline.c
Zhongxing Xu 1a56a488ed Turn -analyzer-inline-call on for C functions. This also fixed a bug that
after inlining post-call checking shouldn't be done.

llvm-svn: 103161
2010-05-06 03:38:27 +00:00

21 lines
383 B
C

// RUN: %clang_cc1 -analyze -analyzer-check-objc-mem -analyzer-inline-call -analyzer-store region -verify %s
int f1() {
int y = 1;
y++;
return y;
}
void f2() {
int x = 1;
x = f1();
if (x == 1) {
int *p = 0;
*p = 3; // no-warning
}
if (x == 2) {
int *p = 0;
*p = 3; // expected-warning{{Dereference of null pointer (loaded from variable 'p')}}
}
}