blob: 243e96bf3e650d40e8a68cec573ac9a1915785ad [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -emit-llvm -o - %s | not grep "zeroinitializer"
Anders Carlssonb723f752009-01-04 02:08:04 +00002
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}