2014-11-24 09:15:30 +00:00
|
|
|
// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm %s -o - | FileCheck %s
|
2009-12-15 18:49:47 +00:00
|
|
|
|
|
|
|
template <class T> struct A { A(); };
|
|
|
|
struct B { A<int> x; };
|
|
|
|
void a() {
|
|
|
|
B b;
|
|
|
|
}
|
2013-12-22 00:07:40 +00:00
|
|
|
|
2011-07-17 15:40:56 +00:00
|
|
|
// CHECK: call {{.*}} @_ZN1BC1Ev
|
2013-12-22 00:07:40 +00:00
|
|
|
// CHECK: define linkonce_odr {{.*}} @_ZN1BC1Ev(%struct.B* {{.*}}%this) unnamed_addr
|
2011-07-17 15:40:56 +00:00
|
|
|
// CHECK: call {{.*}} @_ZN1AIiEC1Ev
|