blob: 343dc6575a71757cb0850561f342264726b1c6c6 [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001// RUN: %clang_cc1 -S %s -o %t-64.s
2// RUN: %clang_cc1 -S %s -o %t-32.s
3
4extern "C" int printf(...);
5
6struct S {
7 S() { printf("S::S\n"); }
8};
9
10struct A {
11 double x;
12 A() : x(), y(), s() { printf("x = %f y = %x \n", x, y); }
13 int *y;
14 S s;
15};
16
17A a;
18
19int main() {
20}