2015-10-08 12:24:12 +08:00
|
|
|
// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited -triple %itanium_abi_triple %s -o - | FileCheck %s
|
2011-10-29 05:12:13 +08:00
|
|
|
|
|
|
|
// Check that this pointer type is TC<int>
|
2016-04-17 15:45:08 +08:00
|
|
|
// CHECK: ![[LINE:[0-9]+]] = distinct !DICompositeType(tag: DW_TAG_class_type, name: "TC<int>"{{.*}}, identifier: "_ZTS2TCIiE")
|
2016-04-24 05:08:27 +08:00
|
|
|
// CHECK: !DIDerivedType(tag: DW_TAG_pointer_type, baseType: ![[LINE]]
|
2011-10-29 05:12:13 +08:00
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
class TC {
|
|
|
|
public:
|
|
|
|
TC(const TC &) {}
|
|
|
|
TC() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
TC<int> tci;
|