forked from OSchip/llvm-project
30 lines
824 B
C++
30 lines
824 B
C++
// RUN: %clang_cc1 -emit-llvm -g -triple x86_64-apple-darwin %s -o - | FileCheck %s
|
|
|
|
template<class X> class B {
|
|
public:
|
|
explicit B(X* p = 0);
|
|
};
|
|
|
|
class A
|
|
{
|
|
public:
|
|
A(int value) : m_a_value(value) {};
|
|
A(int value, A* client_A) : m_a_value (value), m_client_A (client_A) {}
|
|
|
|
virtual ~A() {}
|
|
|
|
private:
|
|
int m_a_value;
|
|
B<A> m_client_A;
|
|
};
|
|
|
|
int main(int argc, char **argv) {
|
|
A reallyA (500);
|
|
}
|
|
|
|
// CHECK: ![[CLASSTYPE:.*]] = {{.*}}, !"_ZTS1A"} ; [ DW_TAG_class_type ] [A]
|
|
// CHECK: ![[ARTARG:.*]] = {{.*}} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 64, offset 0] [artificial] [from _ZTS1A]
|
|
// CHECK: !"_ZTS1A", {{.*}} ; [ DW_TAG_subprogram ] [line 12] [public] [A]
|
|
// CHECK: [[FUNCTYPE:![0-9]*]], null, null, null} ; [ DW_TAG_subroutine_type ]
|
|
// CHECK: [[FUNCTYPE]] = !{null, ![[ARTARG]], !{{.*}}, !{{.*}}}
|