mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 22:16:05 +00:00

Another attempt at r276271, hopefully without breaking ModuleDebugInfo test. llvm-svn: 276317
25 lines
535 B
C++
25 lines
535 B
C++
// 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"
|