blob: 0435a6fd3d7ccbc1a1e10d90bd2e7562231f157e [file] [log] [blame]
Douglas Katzman3459ce22015-10-08 04:24:12 +00001// RUN: %clang_cc1 -emit-llvm -triple %itanium_abi_triple %s -o - -debug-info-kind=standalone | FileCheck %s
Adrian Prantl2c92e9c2014-04-17 00:30:48 +00002namespace __pointer_type_imp
3{
4 template <class _Tp, class _Dp, bool > struct __pointer_type1 {};
5
Duncan P. N. Exon Smith9dd4e4e2015-04-29 16:40:08 +00006 // CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "__pointer_type1<C, default_delete<C>, false>",
Duncan P. N. Exon Smithf04be1f2015-03-03 17:25:55 +00007 // CHECK-SAME: templateParams: ![[PARAMS:[0-9]+]]
8 // CHECK-SAME: identifier: "_ZTSN18__pointer_type_imp15__pointer_type1I1C14default_deleteIS1_ELb0EEE"
Adrian Prantl2c92e9c2014-04-17 00:30:48 +00009 template <class _Tp, class _Dp> struct __pointer_type1<_Tp, _Dp, false>
10 {
11 typedef _Tp* type;
12 };
13}
14template <class _Tp, class _Dp>
15struct __pointer_type2
16{
17 // Test that the bool template type parameter is emitted.
18 //
Duncan P. N. Exon Smithb3a66692014-12-15 19:10:08 +000019 // CHECK: ![[PARAMS]] = !{!{{.*}}, !{{.*}}, ![[FALSE:[0-9]+]]}
Duncan P. N. Exon Smith9dd4e4e2015-04-29 16:40:08 +000020 // CHECK: ![[FALSE]] = !DITemplateValueParameter(type: !{{[0-9]+}}, value: i8 0)
Adrian Prantl2c92e9c2014-04-17 00:30:48 +000021 typedef typename __pointer_type_imp::__pointer_type1<_Tp, _Dp, false>::type type;
22};
23template <class _Tp> struct default_delete {};
24template <class _Tp, class _Dp = default_delete<_Tp> > class unique_ptr
25{
26 typedef typename __pointer_type2<_Tp, _Dp>::type pointer;
27 unique_ptr(pointer __p, _Dp __d) {}
28};
29class C {
30 unique_ptr<C> Ptr;
31};
32void foo(C &c) {
33}