IR: Move MDLocation into place
[oota-llvm.git] / test / DebugInfo / global.ll
1 ; REQUIRES: object-emission
2
3 ; RUN: %llc_dwarf -O0 -filetype=obj < %s > %t
4 ; RUN: llvm-dwarfdump %t | FileCheck %s
5
6 ; Also test that the null streamer doesn't crash with debug info.
7 ; RUN: %llc_dwarf -O0 -filetype=null < %s
8
9 ; generated from the following source compiled to bitcode with clang -g -O1
10 ; static int i;
11 ; int main() {
12 ;   (void)&i;
13 ; }
14
15 ; CHECK: debug_info contents
16 ; CHECK: DW_TAG_variable
17
18 ; Function Attrs: nounwind readnone uwtable
19 define i32 @main() #0 {
20 entry:
21   ret i32 0, !dbg !12
22 }
23
24 attributes #0 = { nounwind readnone uwtable "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "unsafe-fp-math"="false" "use-soft-float"="false" }
25
26 !llvm.dbg.cu = !{!0}
27 !llvm.module.flags = !{!11, !13}
28
29 !0 = !{!"0x11\004\00clang version 3.4 \001\00\000\00\000", !1, !2, !2, !3, !9, !2} ; [ DW_TAG_compile_unit ] [/tmp/global.cpp] [DW_LANG_C_plus_plus]
30 !1 = !{!"global.cpp", !"/tmp"}
31 !2 = !{}
32 !3 = !{!4}
33 !4 = !{!"0x2e\00main\00main\00\002\000\001\000\006\00256\001\002", !1, !5, !6, null, i32 ()* @main, null, null, !2} ; [ DW_TAG_subprogram ] [line 2] [def] [main]
34 !5 = !{!"0x29", !1}          ; [ DW_TAG_file_type ] [/tmp/global.cpp]
35 !6 = !{!"0x15\00\000\000\000\000\000\000", i32 0, null, null, !7, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
36 !7 = !{!8}
37 !8 = !{!"0x24\00int\000\0032\0032\000\000\005", null, null} ; [ DW_TAG_base_type ] [int] [line 0, size 32, align 32, offset 0, enc DW_ATE_signed]
38 !9 = !{!10}
39 !10 = !{!"0x34\00i\00i\00_ZL1i\001\001\001", null, !5, !8, null, null} ; [ DW_TAG_variable ]
40 !11 = !{i32 2, !"Dwarf Version", i32 3}
41 !12 = !MDLocation(line: 4, scope: !4)
42 !13 = !{i32 1, !"Debug Info Version", i32 2}