IR: Move MDLocation into place
[oota-llvm.git] / test / Transforms / ArgumentPromotion / dbg.ll
1 ; RUN: opt < %s -argpromotion -S | FileCheck %s
2 ; CHECK: call void @test(i32 %
3 ; CHECK: void (i32)* @test, {{.*}} ; [ DW_TAG_subprogram ] {{.*}} [test]
4
5 declare void @sink(i32)
6
7 define internal void @test(i32** %X) {
8   %1 = load i32** %X, align 8
9   %2 = load i32* %1, align 8
10   call void @sink(i32 %2)
11   ret void
12 }
13
14 define void @caller(i32** %Y) {
15   call void @test(i32** %Y)
16   ret void
17 }
18
19 !llvm.module.flags = !{!0}
20 !llvm.dbg.cu = !{!3}
21
22 !0 = !{i32 2, !"Debug Info Version", i32 2}
23 !1 = !MDLocation(line: 8, scope: !2)
24 !2 = !{!"0x2e\00test\00test\00\003\001\001\000\006\00256\000\003", null, null, null, null, void (i32**)* @test, null, null, null} ; [ DW_TAG_subprogram ]
25 !3 = !{!"0x11\004\00clang version 3.5.0 \000\00\000\00\002", null, null, null, !4, null, null} ; [ DW_TAG_compile_unit ] [/usr/local/google/home/blaikie/dev/scratch/pr20038/reduce/<stdin>] [DW_LANG_C_plus_plus]
26 !4 = !{!2}