blob: 17ecc35645e9b7a0b2cd8ecd3ae7510506d36b0c [file] [log] [blame]
Stephen Hines651f13c2014-04-23 16:59:28 -07001// RUN: %clang_cc1 %s -triple %itanium_abi_triple -emit-llvm -o - | FileCheck %s
Eli Friedmand49c7b62009-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 Friedman12e9f8e2011-06-14 21:20:53 +00008// CHECK: call {{.*}} @_ZN1AC2Ei