blob: 83d081b18874270f51cb70f5e00bdde897e2bdc2 [file] [log] [blame]
Duncan P. N. Exon Smithc8ee63e2014-12-18 00:48:56 +00001// RUN: %clang_cc1 -emit-llvm -gdwarf-2 -x c++ -o - %s | FileCheck %s
2//
3// PR21941: crasher for self-referencing DW_TAG_structure_type node. If we get
4// rid of self-referenceing structure_types (PR21902), then it should be safe
5// to just kill this test.
6//
Duncan P. N. Exon Smithf04be1f2015-03-03 17:25:55 +00007// CHECK: ![[SELF:[0-9]+]] = distinct !MDCompositeType(tag: DW_TAG_structure_type, name: "B",
8// CHECK-SAME: vtableHolder: ![[SELF]]
Duncan P. N. Exon Smithc8ee63e2014-12-18 00:48:56 +00009
10void foo() {
11 struct V {
12 int vi;
13 };
14 struct B : virtual V {};
15 B b;
16}