1// RUN: %clang_cc1 -triple=x86_64-apple-darwin9 -emit-llvm %s -o %t
2// RUN: grep "call i32 @_Z5func1i" %t | count 3
3
4extern "C" int printf(...);
5
6static int count;
7
8int func2(int c) { return printf("loading the func2(%d)\n", c); };
9int func1(int c) { return printf("loading the func1(%d)\n", c); }
10
11static int loader_1 = func1(++count);
12
13int loader_2 = func2(++count);
14
15static int loader_3 = func1(++count);
16
17
18int main() {}
19
20int loader_4 = func2(++count);
21static int loader_5 = func1(++count);
22int loader_6 = func2(++count);
23
24