Home | History | Annotate | Download | only in CodeGenCXX
      1 // RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited -triple x86_64-apple-darwin %s -o - | FileCheck %s
      2 //
      3 // Test that indirect field decls are handled gracefully.
      4 // rdar://problem/16348575
      5 //
      6 template <class T, int T::*ptr> class Foo {  };
      7 
      8 struct Bar {
      9   int i1;
     10   // CHECK: ![[INT:[0-9]+]] = !DIBasicType(name: "int"
     11   // CHECK: !DIDerivedType(tag: DW_TAG_member, scope:
     12   // CHECK-SAME:           line: [[@LINE+3]]
     13   // CHECK-SAME:           baseType: !"_ZTSN3BarUt_E"
     14   // CHECK-SAME:           size: 32, align: 32, offset: 32
     15   union {
     16     // CHECK: !DIDerivedType(tag: DW_TAG_member, name: "i2",
     17     // CHECK-SAME:           line: [[@LINE+5]]
     18     // CHECK-SAME:           baseType: ![[INT]]
     19     // CHECK-SAME:           size: 32, align: 32
     20     // CHECK-NOT:            offset:
     21     // CHECK-SAME:           ){{$}}
     22     int i2;
     23   };
     24 };
     25 
     26 Foo<Bar, &Bar::i2> the_foo;
     27