blob: 17ecc35645e9b7a0b2cd8ecd3ae7510506d36b0c [file] [log] [blame]
Hans Wennborgc9bd88e2014-01-14 19:35:09 +00001// RUN: %clang_cc1 %s -triple %itanium_abi_triple -emit-llvm -o - | FileCheck %s
Eli Friedman56acd1e2009-11-09 18:49:09 +00002
3// Check that call to constructor for struct A is generated correctly.
4struct A { A(int x = 2); };
5struct B : public A {};
6B x;
7
Eli Friedman50ed1502011-06-14 21:20:53 +00008// CHECK: call {{.*}} @_ZN1AC2Ei