Files
clang-p2996/clang/test/CodeGenCXX/debug-info-fn-template.cpp
Duncan P. N. Exon Smith f04be1fb3a DebugInfo: Move new hierarchy into place (clang)
Update testcases for LLVM change in r231082 to use the new debug info
hierarchy.

llvm-svn: 231083
2015-03-03 17:25:55 +00:00

16 lines
308 B
C++

// RUN: %clang -emit-llvm -g -S %s -o - | FileCheck %s
template<typename T>
struct XF {
T member;
};
template<typename T>
T fx(XF<T> xi) {
return xi.member;
}
// CHECK: !MDCompositeType(tag: DW_TAG_structure_type, name: "XF<int>"
// CHECK: !MDTemplateTypeParameter(name: "T"
template int fx(XF<int>);