Galina Kistanova | f56b4f6 | 2011-06-03 22:24:54 +0000 | [diff] [blame] | 1 | // REQUIRES: x86-registered-target,x86-64-registered-target |
Richard Smith | 9ca5c42 | 2011-10-13 22:29:44 +0000 | [diff] [blame] | 2 | // RUN: %clang_cc1 -triple x86_64-apple-darwin -std=c++11 -S %s -o %t-64.s |
Tim Northover | 19ae117 | 2013-08-12 12:51:05 +0000 | [diff] [blame] | 3 | // RUN: FileCheck -check-prefix CHECK-LP64 --input-file=%t-64.s %s |
Richard Smith | 9ca5c42 | 2011-10-13 22:29:44 +0000 | [diff] [blame] | 4 | // RUN: %clang_cc1 -triple i386-apple-darwin -std=c++11 -S %s -o %t-32.s |
Tim Northover | 19ae117 | 2013-08-12 12:51:05 +0000 | [diff] [blame] | 5 | // RUN: FileCheck -check-prefix CHECK-LP32 --input-file=%t-32.s %s |
Fariborz Jahanian | f1639ff | 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 | f1639ff | 2009-10-28 20:55:41 +0000 | [diff] [blame] | 20 | ~xpto() { |
| 21 | printf("xpto::~xpto()\n"); |
| 22 | } |
Fariborz Jahanian | f1639ff | 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 | 12ca3f4 | 2009-12-18 00:04:09 +0000 | [diff] [blame] | 34 | // CHECK-LP64: callq __ZN4xptoC1Ev |
Fariborz Jahanian | f1639ff | 2009-10-28 20:55:41 +0000 | [diff] [blame] | 35 | |
Chris Lattner | 775e635 | 2010-09-22 06:09:31 +0000 | [diff] [blame] | 36 | // CHECK-LP32: calll L__ZN4xptoC1Ev |
Fariborz Jahanian | f1639ff | 2009-10-28 20:55:41 +0000 | [diff] [blame] | 37 | |