forked from OSchip/llvm-project
25 lines
529 B
C++
25 lines
529 B
C++
// RUN: %clang_cc1 -emit-llvm -g -triple x86_64-apple-darwin -fstandalone-debug %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: !MDDerivedType(tag: DW_TAG_pointer_type
|
|
// CHECK: !MDCompositeType(tag: DW_TAG_structure_type, name: "data"
|
|
// CHECK-NOT: !MDCompositeType(tag: DW_TAG_structure_type, name: "data"
|