diff options
Diffstat (limited to 'clang/test/CodeGenCXX/trivial-constructor-init.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/trivial-constructor-init.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/clang/test/CodeGenCXX/trivial-constructor-init.cpp b/clang/test/CodeGenCXX/trivial-constructor-init.cpp new file mode 100644 index 0000000..343dc65 --- /dev/null +++ b/clang/test/CodeGenCXX/trivial-constructor-init.cpp @@ -0,0 +1,20 @@ +// RUN: %clang_cc1 -S %s -o %t-64.s +// RUN: %clang_cc1 -S %s -o %t-32.s + +extern "C" int printf(...); + +struct S { + S() { printf("S::S\n"); } +}; + +struct A { + double x; + A() : x(), y(), s() { printf("x = %f y = %x \n", x, y); } + int *y; + S s; +}; + +A a; + +int main() { +} |