You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
535 B
25 lines
535 B
// RUN: %clang_cc1 -emit-llvm -debug-info-kind=standalone -triple x86_64-apple-darwin %s -o - | FileCheck %s
|
|
|
|
class Test
|
|
{
|
|
public:
|
|
Test () : reserved (new data()) {}
|
|
|
|
unsigned
|
|
getID() const
|
|
{
|
|
return reserved->objectID;
|
|
}
|
|
protected:
|
|
struct data {
|
|
unsigned objectID;
|
|
};
|
|
data* reserved;
|
|
};
|
|
|
|
Test t;
|
|
|
|
// CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "data"
|
|
// CHECK: !DIDerivedType(tag: DW_TAG_pointer_type
|
|
// CHECK-NOT: !DICompositeType(tag: DW_TAG_structure_type, name: "data"
|