Galina Kistanova | 0ccb31c | 2011-06-03 22:24:54 +0000 | [diff] [blame] | 1 | // REQUIRES: x86-registered-target,x86-64-registered-target |
Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 2 | // RUN: %clang_cc1 -triple x86_64-apple-darwin -std=c++0x -S %s -o %t-64.s |
Daniel Dunbar | 4fcfde4 | 2009-11-08 01:45:36 +0000 | [diff] [blame] | 3 | // RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s |
Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 4 | // RUN: %clang_cc1 -triple i386-apple-darwin -std=c++0x -S %s -o %t-32.s |
Daniel Dunbar | 4fcfde4 | 2009-11-08 01:45:36 +0000 | [diff] [blame] | 5 | // RUN: FileCheck -check-prefix LP32 --input-file=%t-32.s %s |
Fariborz Jahanian | ae013b9 | 2009-10-28 20:55:41 +0000 | [diff] [blame] | 6 | |
| 7 | extern "C" int printf(...); |
| 8 | |
| 9 | static int count; |
| 10 | static float fcount; |
| 11 | |
| 12 | class xpto { |
| 13 | public: |
| 14 | xpto() : i(count++), f(fcount++) { |
| 15 | printf("xpto::xpto()\n"); |
| 16 | } |
| 17 | int i; |
| 18 | float f; |
| 19 | |
Fariborz Jahanian | ae013b9 | 2009-10-28 20:55:41 +0000 | [diff] [blame] | 20 | ~xpto() { |
| 21 | printf("xpto::~xpto()\n"); |
| 22 | } |
Fariborz Jahanian | ae013b9 | 2009-10-28 20:55:41 +0000 | [diff] [blame] | 23 | }; |
| 24 | |
| 25 | int 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 | |
Sean Callanan | 3b29901 | 2009-12-18 00:04:09 +0000 | [diff] [blame] | 34 | // CHECK-LP64: callq __ZN4xptoC1Ev |
Fariborz Jahanian | ae013b9 | 2009-10-28 20:55:41 +0000 | [diff] [blame] | 35 | |
Chris Lattner | 398e6b9 | 2010-09-22 06:09:31 +0000 | [diff] [blame] | 36 | // CHECK-LP32: calll L__ZN4xptoC1Ev |
Fariborz Jahanian | ae013b9 | 2009-10-28 20:55:41 +0000 | [diff] [blame] | 37 | |