blob: 93df818460374818bf3a20dfa8719535890ff285 [file] [log] [blame]
Hans Wennborgc9bd88e2014-01-14 19:35:09 +00001// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm %s -o - | FileCheck %s
Eli Friedmand0e8de22009-12-07 00:22:08 +00002
3template <class T> struct A { A(); };
4struct B { A<int> x; };
5void a() {
6 B b;
7}
Stephen Lin9dc6eef2013-06-30 20:40:16 +00008
Stephen Lin8f99e942013-06-18 20:51:51 +00009// CHECK: call {{.*}} @_ZN1BC1Ev
Stephen Lin9dc6eef2013-06-30 20:40:16 +000010// CHECK: define linkonce_odr {{.*}} @_ZN1BC1Ev(%struct.B* {{.*}}%this) unnamed_addr
Stephen Lin8f99e942013-06-18 20:51:51 +000011// CHECK: call {{.*}} @_ZN1AIiEC1Ev