xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/debug-info-template-limit.cpp (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1  // RUN: %clang_cc1 -emit-llvm -fno-standalone-debug -triple %itanium_abi_triple -g %s -o - | FileCheck %s
2  
3  // Check that this pointer type is TC<int>
4  // CHECK: ![[LINE:[0-9]+]] = !{!"0x2\00TC<int>\00{{.*}}", {{.*}} !"_ZTS2TCIiE"} ; [ DW_TAG_class_type ]
5  // CHECK: !"_ZTS2TCIiE"} ; [ DW_TAG_pointer_type ]{{.*}}[from _ZTS2TCIiE]
6  
7  template<typename T>
8  class TC {
9  public:
TC(const TC &)10    TC(const TC &) {}
TC()11    TC() {}
12  };
13  
14  TC<int> tci;
15