blob: c63f4ed892a35862cc8e8f9f2bffd7154c11a119 [file] [log] [blame]
Anders Carlssonb723f752009-01-04 02:08:04 +00001// RUN: clang -emit-llvm -o - %s | not grep "zeroinitializer"
2
3struct s {
4 int a;
5};
6
7static void *v;
8
9static struct s a;
10
11static struct s a = {
12 10
13};
14
15void *f()
16{
17 if (a.a)
18 return v;
19}