blob: 215696405a4faed232db179a1ddc4a1551e0f630 [file] [log] [blame]
Stephen Lin8f99e942013-06-18 20:51:51 +00001// RUN: %clang_cc1 -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