Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame] | 1 | // RUN: %clang_cc1 -emit-llvm -triple %itanium_abi_triple -g %s -o - -fstandalone-debug | FileCheck %s |
| 2 | namespace __pointer_type_imp |
| 3 | { |
| 4 | template <class _Tp, class _Dp, bool > struct __pointer_type1 {}; |
| 5 | |
Pirama Arumuga Nainar | 3ea9e33 | 2015-04-08 08:57:32 -0700 | [diff] [blame^] | 6 | // CHECK: !MDCompositeType(tag: DW_TAG_structure_type, name: "__pointer_type1<C, default_delete<C>, false>", |
| 7 | // CHECK-SAME: templateParams: ![[PARAMS:[0-9]+]] |
| 8 | // CHECK-SAME: identifier: "_ZTSN18__pointer_type_imp15__pointer_type1I1C14default_deleteIS1_ELb0EEE" |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame] | 9 | template <class _Tp, class _Dp> struct __pointer_type1<_Tp, _Dp, false> |
| 10 | { |
| 11 | typedef _Tp* type; |
| 12 | }; |
| 13 | } |
| 14 | template <class _Tp, class _Dp> |
| 15 | struct __pointer_type2 |
| 16 | { |
| 17 | // Test that the bool template type parameter is emitted. |
| 18 | // |
Stephen Hines | 0e2c34f | 2015-03-23 12:09:02 -0700 | [diff] [blame] | 19 | // CHECK: ![[PARAMS]] = !{!{{.*}}, !{{.*}}, ![[FALSE:[0-9]+]]} |
Pirama Arumuga Nainar | 3ea9e33 | 2015-04-08 08:57:32 -0700 | [diff] [blame^] | 20 | // CHECK: ![[FALSE]] = !MDTemplateValueParameter(type: !{{[0-9]+}}, value: i8 0) |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame] | 21 | typedef typename __pointer_type_imp::__pointer_type1<_Tp, _Dp, false>::type type; |
| 22 | }; |
| 23 | template <class _Tp> struct default_delete {}; |
| 24 | template <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 | }; |
| 29 | class C { |
| 30 | unique_ptr<C> Ptr; |
| 31 | }; |
| 32 | void foo(C &c) { |
| 33 | } |