1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -emit-llvm -o %t %s
2*f4a2713aSLionel Sambuc // RUN: grep -e "global_ctors.*@A" %t
3*f4a2713aSLionel Sambuc // RUN: grep -e "global_dtors.*@B" %t
4*f4a2713aSLionel Sambuc // RUN: grep -e "global_ctors.*@C" %t
5*f4a2713aSLionel Sambuc // RUN: grep -e "global_dtors.*@D" %t
6*f4a2713aSLionel Sambuc 
7*f4a2713aSLionel Sambuc int printf(const char *, ...);
8*f4a2713aSLionel Sambuc 
9*f4a2713aSLionel Sambuc void A() __attribute__((constructor));
10*f4a2713aSLionel Sambuc void B() __attribute__((destructor));
11*f4a2713aSLionel Sambuc 
A()12*f4a2713aSLionel Sambuc void A() {
13*f4a2713aSLionel Sambuc   printf("A\n");
14*f4a2713aSLionel Sambuc }
15*f4a2713aSLionel Sambuc 
B()16*f4a2713aSLionel Sambuc void B() {
17*f4a2713aSLionel Sambuc   printf("B\n");
18*f4a2713aSLionel Sambuc }
19*f4a2713aSLionel Sambuc 
20*f4a2713aSLionel Sambuc static void C() __attribute__((constructor));
21*f4a2713aSLionel Sambuc 
22*f4a2713aSLionel Sambuc static void D() __attribute__((destructor));
23*f4a2713aSLionel Sambuc 
foo()24*f4a2713aSLionel Sambuc static int foo() {
25*f4a2713aSLionel Sambuc   return 10;
26*f4a2713aSLionel Sambuc }
27*f4a2713aSLionel Sambuc 
C()28*f4a2713aSLionel Sambuc static void C() {
29*f4a2713aSLionel Sambuc   printf("A: %d\n", foo());
30*f4a2713aSLionel Sambuc }
31*f4a2713aSLionel Sambuc 
D()32*f4a2713aSLionel Sambuc static void D() {
33*f4a2713aSLionel Sambuc   printf("B\n");
34*f4a2713aSLionel Sambuc }
35*f4a2713aSLionel Sambuc 
main()36*f4a2713aSLionel Sambuc int main() {
37*f4a2713aSLionel Sambuc   return 0;
38*f4a2713aSLionel Sambuc }
39