blob: f579de13d5328da3bf082d70075f5efe96fe999b [file] [log] [blame]
Stephen Hines651f13c2014-04-23 16:59:28 -07001// RUN: %clang_cc1 -emit-llvm -g %s -o - | FileCheck %s
2// Test that the line table info for Foo<T>::bar() is pointing to the
3// right header file.
4// CHECK: define{{.*}}bar
5// CHECK-NOT: define
6// CHECK: ret {{.*}}, !dbg [[DBG:.*]]
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07007// CHECK: [[HPP:.*]] = !MDFile(filename: "./template.hpp",
8// CHECK: [[SP:.*]] = !MDSubprogram(name: "bar",
9// CHECK-SAME: file: [[HPP]], line: 22
10// CHECK-SAME: isDefinition: true
Stephen Hines651f13c2014-04-23 16:59:28 -070011// We shouldn't need a lexical block for this function.
Stephen Hines0e2c34f2015-03-23 12:09:02 -070012// CHECK: [[DBG]] = !MDLocation(line: 23, scope: [[SP]])
Stephen Hines651f13c2014-04-23 16:59:28 -070013
14
15# 1 "./template.h" 1
16template <typename T>
17class Foo {
18public:
19 int bar();
20};
21# 21 "./template.hpp"
22template <typename T>
23int Foo<T>::bar() {
24 return 23;
25}
26int main (int argc, const char * argv[])
27{
28 Foo<int> f;
29 return f.bar();
30}