blob: 9e4c4f7c5cddd2ee966176d0ca912cbb7ff9e6c7 [file] [log] [blame]
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00001// RUN: clang-cc -triple x86_64-apple-darwin -std=c++0x -S %s -o %t-64.s
2// RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s
3// RUN: clang-cc -triple i386-apple-darwin -std=c++0x -S %s -o %t-32.s
4// RUN: FileCheck -check-prefix LP32 --input-file=%t-32.s %s
Fariborz Jahanianae013b92009-10-28 20:55:41 +00005// RUN: true
6
7extern "C" int printf(...);
8
9static int count;
10static float fcount;
11
12class xpto {
13public:
14 xpto() : i(count++), f(fcount++) {
15 printf("xpto::xpto()\n");
16 }
17 int i;
18 float f;
19
Fariborz Jahanianae013b92009-10-28 20:55:41 +000020 ~xpto() {
21 printf("xpto::~xpto()\n");
22 }
Fariborz Jahanianae013b92009-10-28 20:55:41 +000023};
24
25int main() {
26 xpto array[2][3][4];
27 for (int h = 0; h < 2; h++)
28 for (int i = 0; i < 3; i++)
29 for (int j = 0; j < 4; j++)
30 printf("array[%d][%d][%d] = {%d, %f}\n",
31 h, i, j, array[h][i][j].i, array[h][i][j].f);
32}
33
34// CHECK-LP64: call __ZN4xptoC1Ev
35
36// CHECK-LP32: call L__ZN4xptoC1Ev
37