2015-10-08 12:24:12 +08:00
|
|
|
// RUN: %clang_cc1 -emit-llvm -dwarf-version=2 -debug-info-kind=limited -x c++ -o - %s | FileCheck %s
|
2014-12-18 08:48:56 +08:00
|
|
|
//
|
|
|
|
// PR21941: crasher for self-referencing DW_TAG_structure_type node. If we get
|
|
|
|
// rid of self-referenceing structure_types (PR21902), then it should be safe
|
|
|
|
// to just kill this test.
|
|
|
|
//
|
2015-04-30 00:40:08 +08:00
|
|
|
// CHECK: ![[SELF:[0-9]+]] = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "B",
|
2015-03-04 01:25:55 +08:00
|
|
|
// CHECK-SAME: vtableHolder: ![[SELF]]
|
2014-12-18 08:48:56 +08:00
|
|
|
|
|
|
|
void foo() {
|
|
|
|
struct V {
|
|
|
|
int vi;
|
|
|
|
};
|
|
|
|
struct B : virtual V {};
|
|
|
|
B b;
|
|
|
|
}
|