blob: 90d6e655d8d89814d23fe99d0cde56b737660a78 [file] [log] [blame]
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00001// RUN: clang-cc -S %s -o %t-64.s
2// RUN: clang-cc -S %s -o %t-32.s
Fariborz Jahanian636a0ff2009-09-02 17:10:17 +00003
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}