blob: e3db1668d83631447fe09e799aa655bdbffe5867 [file] [log] [blame]
Daniel Dunbarae3c16c2008-10-04 20:46:41 +00001// RUN: rm -rf %t &&
Ted Kremenek6c07bdb2009-06-26 00:05:51 +00002// RUN: clang-cc --html-diags=%t -checker-cfref %s
Daniel Dunbarae3c16c2008-10-04 20:46:41 +00003
4void f0(int x) {
5 int *p = &x;
6
7 if (x > 10) {
8 if (x == 22)
9 p = 0;
10 }
11
12 *p = 10;
13}
14
15