summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/debug-info-user-def.cpp
blob: ecd387870549c0c232eadd63198edc99a824711f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: %clang_cc1 -emit-llvm -g -triple x86_64-apple-darwin -std=c++11 %s -o - | FileCheck %s

class A {
};

template <typename T> class B {
  T t;
};

A a;
B<int> b;

// Check that no subprograms are emitted into debug info.
// CHECK-NOT: [ DW_TAG_subprogram ]
OpenPOWER on IntegriCloud