1 // RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm-only -std=c++14 -emit-llvm -g %s -o - | FileCheck %s 2 3 // CHECK: [[EMPTY:![0-9]*]] = !{} 4 // CHECK: !MDCompositeType(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: !MDSubprogram(name: "func", {{.*}} scope: !"_ZTS3foo" 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]] = !MDSubroutineType(types: [[TYPE_LIST:![0-9]*]]) 12 // CHECK: [[TYPE_LIST]] = !{[[INT:![0-9]*]]} 13 // CHECK: [[INT]] = !MDBasicType(name: "int" 14 // CHECK: [[FUNC_DECL]] = !MDSubprogram(name: "func", 15 // CHECK-SAME: scope: !"_ZTS3foo" 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