IR: Move MDLocation into place
[oota-llvm.git] / test / CodeGen / XCore / dwarf_debug.ll
1 ; RUN: llc < %s -mtriple=xcore-unknown-unknown -O0 | FileCheck %s
2
3 ; target datalayout = "e-m:e-p:32:32-i1:8:32-i8:8:32-i16:16:32-i64:32-f64:32-a:0:32-n32"
4 ; target triple = "xcore"
5
6 ; CHECK-LABEL: f
7 ; CHECK: entsp 2
8 ; ...the prologue...
9 ; CHECK: .loc 1 2 0 prologue_end      # :2:0
10 ; CHECK: add r0, r0, 1
11 ; CHECK: retsp 2
12 define i32 @f(i32 %a) {
13 entry:
14   %a.addr = alloca i32, align 4
15   store i32 %a, i32* %a.addr, align 4
16   call void @llvm.dbg.declare(metadata i32* %a.addr, metadata !11, metadata !{!"0x102"}), !dbg !12
17   %0 = load i32* %a.addr, align 4, !dbg !12
18   %add = add nsw i32 %0, 1, !dbg !12
19   ret i32 %add, !dbg !12
20 }
21
22 declare void @llvm.dbg.declare(metadata, metadata, metadata)
23
24 !llvm.dbg.cu = !{!0}
25 !llvm.module.flags = !{!9, !10}
26 !0 = !{!"0x11\0012\00\000\00\000\00\001", !1, !2, !2, !3, !2, !2} ; [ DW_TAG_compile_unit ]
27 !1 = !{!"", !""}
28 !2 = !{}
29 !3 = !{!4}
30 !4 = !{!"0x2e\00f\00f\00\002\000\001\000\006\00256\000\002", !1, !5, !6, null, i32 (i32)* @f, null, null, !2} ; [ DW_TAG_subprogram ]
31 !5 = !{!"0x29", !1} ; [ DW_TAG_file_type ]
32 !6 = !{!"0x15\00\000\000\000\000\000\000", i32 0, null, null, !7, null, null, null} ; [ DW_TAG_subroutine_type ]
33 !7 = !{!8, !8}
34 !8 = !{!"0x24\00int\000\0032\0032\000\000\005", null, null} ; [ DW_TAG_base_type ]
35 !9 = !{i32 2, !"Dwarf Version", i32 4}
36 !10 = !{i32 2, !"Debug Info Version", i32 2}
37 !11 = !{!"0x101\00a\0016777218\000", !4, !5, !8} ; [ DW_TAG_arg_variable ]
38 !12 = !MDLocation(line: 2, scope: !4)
39