blob: aa4f1737a11c9771c1adabe7399e88dedd0fcafc [file] [log] [blame]
Hans Wennborg442e4f72013-12-13 22:43:52 +00001// RUN: %clang_cc1 %s -cxx-abi itanium -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