• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1  -S %s -o %t-64.s
2 // RUN: %clang_cc1  -S %s -o %t-32.s
3 
4 extern "C" int printf(...);
5 
6 struct S {
SS7   S() { printf("S::S\n"); }
8 };
9 
10 struct A {
11   double x;
AA12   A() : x(), y(), s() { printf("x = %f y = %x \n", x, y); }
13   int *y;
14   S s;
15 };
16 
17 A a;
18 
main()19 int main() {
20 }
21