brintos

brintos / llvm-project-archived public Read only

0
0
Text · 932 B · 1b857d8 Raw
26 lines · cpp
1// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited -triple x86_64-apple-darwin %s -o - | FileCheck %s2//3// Test that indirect field decls are handled gracefully.4template <class T, int T::*ptr> class Foo {  };5 6struct Bar {7  int i1;8  // CHECK: ![[INT:[0-9]+]] = !DIBasicType(name: "int"9  // CHECK: !DIDerivedType(tag: DW_TAG_member, scope:10  // CHECK-SAME:           line: [[@LINE+4]]11  // CHECK-SAME:           baseType: ![[UNION:[0-9]+]]12  // CHECK-SAME:           size: 32, offset: 3213  // CHECK: ![[UNION]] = distinct !DICompositeType(tag: DW_TAG_union_type,{{.*}} identifier: "_ZTSN3BarUt_E")14  union {15    // CHECK: !DIDerivedType(tag: DW_TAG_member, name: "i2",16    // CHECK-SAME:           line: [[@LINE+5]]17    // CHECK-SAME:           baseType: ![[INT]]18    // CHECK-SAME:           size: 3219    // CHECK-NOT:            offset:20    // CHECK-SAME:           ){{$}}21    int i2;22  };23};24 25Foo<Bar, &Bar::i2> the_foo;26