Home | History | Annotate | Download | only in CodeGenCXX
      1 // RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm-only -std=c++14 -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s
      2 
      3 // CHECK: [[EMPTY:![0-9]*]] = !{}
      4 // CHECK: [[FOO:![0-9]+]] = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "foo",
      5 // CHECK-SAME:             elements: [[EMPTY]]
      6 // FIXME: The context of this definition should be the CU/file scope, not the class.
      7 // CHECK: !DISubprogram(name: "func", {{.*}} scope: [[FOO]]
      8 // CHECK-SAME:          type: [[SUBROUTINE_TYPE:![0-9]*]]
      9 // CHECK-SAME:          isDefinition: true
     10 // CHECK-SAME:          declaration: [[FUNC_DECL:![0-9]*]]
     11 // CHECK: [[SUBROUTINE_TYPE]] = !DISubroutineType(types: [[TYPE_LIST:![0-9]*]])
     12 // CHECK: [[TYPE_LIST]] = !{[[INT:![0-9]*]]}
     13 // CHECK: [[INT]] = !DIBasicType(name: "int"
     14 // CHECK: [[FUNC_DECL]] = !DISubprogram(name: "func",
     15 // CHECK-SAME:                          scope: [[FOO]]
     16 // CHECK-SAME:                          type: [[SUBROUTINE_TYPE]]
     17 // CHECK-SAME:                          isDefinition: false
     18 
     19 struct foo {
     20   static auto func();
     21 };
     22 
     23 foo f;
     24 
     25 auto foo::func() {
     26   return 1;
     27 }
     28