blob: 870ca54e41a635d000823c57e1e8708664ba3439 [file] [log] [blame]
Zhongxing Xue8e4d8c2008-11-20 00:46:15 +00001// RUN: clang -checker-simple -analyzer-store-region -verify %s
2
3struct s {
4 int data;
5};
6
7struct s global;
8
9void g(int);
10
11void f4() {
12 int a;
13 if (global.data == 0)
14 a = 3;
15 if (global.data == 0)
16 g(a); // no-warning
17}