Shafik Yaghmour | 90e00bd | 2019-08-26 20:59:44 +0000 | [diff] [blame] | 1 | ; RUN: %llc_dwarf -O0 -filetype=obj < %s | llvm-dwarfdump -debug-info - | FileCheck %s |
| 2 | ; |
| 3 | ; struct A { |
| 4 | ; // Anonymous class exports its symbols into A |
| 5 | ; struct { |
| 6 | ; int y; |
| 7 | ; }; |
| 8 | ; } a; |
| 9 | ; |
| 10 | ; CHECK: DW_TAG_structure_type |
| 11 | ; CHECK-NEXT: DW_AT_calling_convention (DW_CC_pass_by_value) |
| 12 | ; CHECK-NEXT: DW_AT_name ("A") |
| 13 | ; |
| 14 | ; CHECK-NOT: NULL |
| 15 | ; |
| 16 | ; CHECK: DW_TAG_structure_type |
| 17 | ; CHECK-NEXT: DW_AT_export_symbols (true) |
| 18 | |
| 19 | %struct.A = type { %struct.anon } |
| 20 | %struct.anon = type { i32 } |
| 21 | |
| 22 | @a = global %struct.A zeroinitializer, align 4, !dbg !0 |
| 23 | |
| 24 | !llvm.module.flags = !{!14, !15} |
| 25 | !llvm.dbg.cu = !{!2} |
| 26 | !llvm.ident = !{!16} |
| 27 | |
| 28 | !0 = !DIGlobalVariableExpression(var: !1, expr: !DIExpression()) |
| 29 | !1 = distinct !DIGlobalVariable(name: "a", scope: !2, file: !3, line: 5, type: !6, isLocal: false, isDefinition: true) |
| 30 | !2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, producer: "clang version 10.0.0", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !5, nameTableKind: GNU) |
| 31 | !3 = !DIFile(filename: "simple_anon_class.cpp", directory: "/dir") |
| 32 | !4 = !{} |
| 33 | !5 = !{!0} |
| 34 | !6 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "A", file: !3, line: 1, size: 32, flags: DIFlagTypePassByValue, elements: !7, identifier: "_ZTS1A") |
| 35 | !7 = !{!8} |
| 36 | !8 = !DIDerivedType(tag: DW_TAG_member, scope: !6, file: !3, line: 2, baseType: !9, size: 32) |
| 37 | !9 = distinct !DICompositeType(tag: DW_TAG_structure_type, scope: !6, file: !3, line: 2, size: 32, flags: DIFlagExportSymbols | DIFlagTypePassByValue, elements: !10, identifier: "_ZTSN1AUt_E") |
| 38 | !10 = !{!11} |
| 39 | !11 = !DIDerivedType(tag: DW_TAG_member, name: "y", scope: !9, file: !3, line: 3, baseType: !12, size: 32) |
| 40 | !12 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed) |
| 41 | !14 = !{i32 2, !"Dwarf Version", i32 4} |
| 42 | !15 = !{i32 2, !"Debug Info Version", i32 3} |
| 43 | !16 = !{!"clang version 10.0.0"} |