blob: 05e6d71bae9c7e72f88795df61fbefaff2b35ca6 [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 Smith4bbe4282015-01-08 22:39:28 +00007// CHECK: ![[SELF:[0-9]+]] = distinct !{!"0x13\00B\00{{[^"]*}}", {{[^,]+}}, {{[^,]+}}, {{[^,]+}}, {{[^,]+}}, ![[SELF]], {{[^}]+}}} ; [ DW_TAG_structure_type ] [B]
Duncan P. N. Exon Smithc8ee63e2014-12-18 00:48:56 +00008
9void foo() {
10 struct V {
11 int vi;
12 };
13 struct B : virtual V {};
14 B b;
15}