Files
clang-p2996/clang/test/CodeGenCXX/debug-info-fn-template.cpp
Eric Christopher 4b4beb2fe7 Fix PR11073 by adding the argument type information to the decl we construct
for the function type. Update a testcase accordingly.

Patch initially by Anders Waldenborg!

llvm-svn: 142700
2011-10-21 23:30:10 +00:00

16 lines
249 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: XF<int>
//CHECK: DW_TAG_template_type_parameter
template int fx(XF<int>);