blob: 0dd64dfcb4c91c76e8b4c8dc5d6676797f4d9d82 [file] [log] [blame]
Stephen Linf7568822013-06-18 20:51:51 +00001// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
Eli Friedman721e77d2009-12-07 00:22:08 +00002
3template <class T> struct A { A(); };
4struct B { A<int> x; };
5void a() {
6 B b;
7}
Stephen Linf7568822013-06-18 20:51:51 +00008// CHECK: call {{.*}} @_ZN1BC1Ev
Stephen Lin3258abc2013-06-19 23:23:19 +00009// CHECK: define linkonce_odr {{.*}} @_ZN1BC1Ev(%struct.B* %this) unnamed_addr
Stephen Linf7568822013-06-18 20:51:51 +000010// CHECK: call {{.*}} @_ZN1AIiEC1Ev