1// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
2// CHECK: ModuleID
3// CHECK-NOT: zeroinitializer
4// CHECK-LABEL: define i8* @f
5
6struct s {
7    int a;
8};
9
10static void *v;
11
12static struct s a;
13
14static struct s a = {
15    10
16};
17
18void *f()
19{
20  if (a.a)
21    return v;
22}
23