blob: 087d655f0a27ddd5c6a1fc4691c64f958bc1a6cc [file] [log] [blame]
Richard Smith1664d542012-04-22 05:51:36 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin -std=c++11 -emit-llvm %s -o - | FileCheck %s
Fariborz Jahanian88f42802009-11-10 19:24:06 +00002
3extern "C" int printf(...);
4
5int count;
6
7struct S {
8 S() : iS(++count) { printf("S::S(%d)\n", iS); }
9 ~S() { printf("S::~S(%d)\n", iS); }
10 int iS;
11};
12
13
14S arr[2][1];
15S s1;
16S arr1[3];
17static S sarr[4];
18
19int main () {}
20S arr2[2];
21static S sarr1[4];
22S s2;
23S arr3[3];
24
Richard Smith1664d542012-04-22 05:51:36 +000025// CHECK: call {{.*}} @__cxa_atexit
26// CHECK: call {{.*}} @__cxa_atexit
27// CHECK: call {{.*}} @__cxa_atexit
28// CHECK: call {{.*}} @__cxa_atexit
29// CHECK: call {{.*}} @__cxa_atexit
30// CHECK: call {{.*}} @__cxa_atexit
31// CHECK: call {{.*}} @__cxa_atexit
32// CHECK: call {{.*}} @__cxa_atexit
33
34struct T {
35 double d;
36 int n;
37 ~T();
38};
39T t[2][3] = { 1.0, 2, 3.0, 4, 5.0, 6, 7.0, 8, 9.0, 10, 11.0, 12 };
40
41// CHECK: call {{.*}} @__cxa_atexit
42// CHECK: getelementptr inbounds ({{.*}} bitcast {{.*}}* @t to %struct.T*), i64 6
43// CHECK: call void @_ZN1TD1Ev
44// CHECK: icmp eq {{.*}} @t
45// CHECK: br i1 {{.*}}
Richard Smith5f9a7e32012-11-12 21:38:00 +000046
47static T t2[2][3] = { 1.0, 2, 3.0, 4, 5.0, 6, 7.0, 8, 9.0, 10, 11.0, 12 };
48
49// CHECK: call {{.*}} @__cxa_atexit
50// CHECK: getelementptr inbounds ({{.*}} bitcast {{.*}}* @_ZL2t2 to %struct.T*), i64 6
51// CHECK: call void @_ZN1TD1Ev
52// CHECK: icmp eq {{.*}} @_ZL2t
53// CHECK: br i1 {{.*}}
Richard Smith802e2262013-02-02 01:13:06 +000054
55using U = T[2][3];
56U &&u = U{ {{1.0, 2}, {3.0, 4}, {5.0, 6}}, {{7.0, 8}, {9.0, 10}, {11.0, 12}} };
57
58// CHECK: call {{.*}} @__cxa_atexit
59// CHECK: getelementptr inbounds ([2 x [3 x {{.*}}]]* @_ZGR1u, i64 1, i64 0, i64 0)
60// CHECK: call void @_ZN1TD1Ev
61// CHECK: icmp eq {{.*}} @_ZGR1u
62// CHECK: br i1 {{.*}}