1; RUN: llc -filetype=obj < %s | llvm-readobj -codeview - | FileCheck %s 2 3; Objective-C++ source demonstrating the issue: 4; void (^b)(void) = []() {}; 5 6; C++ source derived and modified from: 7; struct S { 8; struct { 9; int a; 10; }; 11; } s; 12 13; CHECK: CodeViewTypes [ 14; CHECK: FieldList ([[S_fl:.*]]) { 15; CHECK: TypeLeafKind: LF_FIELDLIST (0x1203) 16; CHECK: DataMember { 17; CHECK: Type: int (0x74) 18; CHECK: FieldOffset: 0x0 19; CHECK: Name: a 20; CHECK: } 21; CHECK: } 22; CHECK: Struct ({{.*}}) { 23; CHECK: TypeLeafKind: LF_STRUCTURE (0x1505) 24; CHECK: MemberCount: 2 25; CHECK: FieldList: <field list> ([[S_fl]]) 26; CHECK: SizeOf: 4 27; CHECK: Name: S 28; CHECK: LinkageName: .?AUS@@ 29; CHECK: } 30 31target datalayout = "e-m:x-p:32:32-i64:64-f80:32-n8:16:32-a:0:32-S32" 32target triple = "i686--windows-msvc19.11.0" 33 34%struct.S = type { %struct.anon } 35%struct.anon = type { i32 } 36 37@"\01?s@@3US@@A" = dso_local global %struct.S zeroinitializer, align 4, !dbg !0 38 39!llvm.dbg.cu = !{!2} 40!llvm.module.flags = !{!13, !14, !15, !16} 41!llvm.ident = !{!17} 42 43!0 = !DIGlobalVariableExpression(var: !1, expr: !DIExpression()) 44!1 = distinct !DIGlobalVariable(name: "s", linkageName: "\01?s@@3US@@A", scope: !2, file: !3, line: 5, type: !6, isLocal: false, isDefinition: true) 45!2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, producer: "clang version 7.0.0 (trunk 325940) (llvm/trunk 325939)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !5) 46!3 = !DIFile(filename: "/tmp/ugh.cpp", directory: "/home/smeenai/llvm/build/llvm/Debug", checksumkind: CSK_MD5, checksum: "8256b51d95df0b5e42b848a3afe9cbda") 47!4 = !{} 48!5 = !{!0} 49!6 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "S", file: !3, line: 1, size: 32, flags: DIFlagTypePassByValue, elements: !7, identifier: ".?AUS@@") 50!7 = !{!8, !12} 51!8 = distinct !DICompositeType(tag: DW_TAG_structure_type, scope: !6, file: !3, line: 2, size: 32, flags: DIFlagTypePassByValue, elements: !9, identifier: ".?AU<unnamed-type-$S1>@S@@") 52!9 = !{!10} 53!10 = !DIDerivedType(tag: DW_TAG_member, name: "a", scope: !8, file: !3, line: 3, baseType: !11, size: 32) 54!11 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed) 55!12 = !DIDerivedType(tag: DW_TAG_member, scope: !6, file: !3, line: 2, baseType: !18, size: 32) ; !8 changed to !18 56!13 = !{i32 1, !"NumRegisterParameters", i32 0} 57!14 = !{i32 2, !"CodeView", i32 1} 58!15 = !{i32 2, !"Debug Info Version", i32 3} 59!16 = !{i32 1, !"wchar_size", i32 2} 60!17 = !{!"clang version 7.0.0 (trunk 325940) (llvm/trunk 325939)"} 61!18 = !DIDerivedType(tag: DW_TAG_const_type, baseType: !8) ; added manually 62