Devang Patel | ef8857d | 2011-10-28 21:12:13 +0000 | [diff] [blame] | 1 | // RUN: %clang -flimit-debug-info -emit-llvm -g -S %s -o - | FileCheck %s |
| 2 | |
| 3 | // Check that this pointer type is TC<int> |
Manman Ren | 865750e | 2013-10-01 23:46:19 +0000 | [diff] [blame^] | 4 | // CHECK: ![[LINE:[0-9]+]] = {{.*}}"TC<int>", {{.*}} metadata !"_ZTS2TCIiE"} ; [ DW_TAG_class_type ] |
| 5 | // CHECK: metadata !"_ZTS2TCIiE"} ; [ DW_TAG_pointer_type ]{{.*}}[from _ZTS2TCIiE] |
Devang Patel | ef8857d | 2011-10-28 21:12:13 +0000 | [diff] [blame] | 6 | |
| 7 | template<typename T> |
| 8 | class TC { |
| 9 | public: |
| 10 | TC(const TC &) {} |
| 11 | TC() {} |
| 12 | }; |
| 13 | |
| 14 | TC<int> tci; |