1; RUN: llc -mtriple=x86_64-apple-darwin %s -o %t -filetype=obj
2; RUN: llvm-dwarfdump -debug-dump=info %t | FileCheck %s
3
4; Make sure that structures have a decl file and decl line attached.
5; CHECK: DW_TAG_structure_type
6; CHECK: DW_AT_decl_file
7; CHECK: DW_AT_decl_line
8; CHECK: DW_TAG_member
9
10%struct.foo = type { i32 }
11
12@f = common global %struct.foo zeroinitializer, align 4
13
14!llvm.dbg.cu = !{!0}
15!llvm.module.flags = !{!12}
16
17!0 = !{!"0x11\0012\00clang version 3.1 (trunk 152837) (llvm/trunk 152845)\000\00\000\00\000", !11, !1, !1, !1, !3,  !1} ; [ DW_TAG_compile_unit ]
18!1 = !{}
19!3 = !{!5}
20!5 = !{!"0x34\00f\00f\00\005\000\001", null, !6, !7, %struct.foo* @f, null} ; [ DW_TAG_variable ]
21!6 = !{!"0x29", !11} ; [ DW_TAG_file_type ]
22!7 = !{!"0x13\00foo\001\0032\0032\000\000\000", !11, null, null, !8, null, null, null} ; [ DW_TAG_structure_type ] [foo] [line 1, size 32, align 32, offset 0] [def] [from ]
23!8 = !{!9}
24!9 = !{!"0xd\00a\002\0032\0032\000\000", !11, !7, !10} ; [ DW_TAG_member ]
25!10 = !{!"0x24\00int\000\0032\0032\000\000\005", null, null} ; [ DW_TAG_base_type ]
26!11 = !{!"struct_bug.c", !"/Users/echristo/tmp"}
27!12 = !{i32 1, !"Debug Info Version", i32 2}
28