Remove erroneous REQUIRES: object-emission for asm test.
[oota-llvm.git] / test / DebugInfo / X86 / line.ll
1 ; RUN: llc -mtriple=x86_64-linux -O0 -filetype=asm < %s | FileCheck %s
2
3 ; From source:
4 ; int f(int a, int b) {
5 ;   return a   //
6 ;          &&  //
7 ;          b;
8 ; }
9
10 ; Check that the comparison of 'a' is attributed to line 2, not 3.
11
12 ; CHECK: .loc{{ +}}1{{ +}}2
13 ; CHECK-NOT: .loc{{ }}
14 ; CHECK: cmpl
15
16 ; Function Attrs: nounwind uwtable
17 define i32 @_Z1fii(i32 %a, i32 %b) #0 {
18 entry:
19   %a.addr = alloca i32, align 4
20   %b.addr = alloca i32, align 4
21   store i32 %a, i32* %a.addr, align 4
22   store i32 %b, i32* %b.addr, align 4
23   %0 = load i32* %a.addr, align 4, !dbg !10
24   %tobool = icmp ne i32 %0, 0, !dbg !10
25   br i1 %tobool, label %land.rhs, label %land.end, !dbg !11
26
27 land.rhs:                                         ; preds = %entry
28   %1 = load i32* %b.addr, align 4, !dbg !12
29   %tobool1 = icmp ne i32 %1, 0, !dbg !12
30   br label %land.end
31
32 land.end:                                         ; preds = %land.rhs, %entry
33   %2 = phi i1 [ false, %entry ], [ %tobool1, %land.rhs ]
34   %conv = zext i1 %2 to i32, !dbg !10
35   ret i32 %conv, !dbg !13
36 }
37
38 attributes #0 = { nounwind uwtable "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
39
40 !llvm.dbg.cu = !{!0}
41 !llvm.module.flags = !{!7, !8}
42 !llvm.ident = !{!9}
43
44 !0 = !{!"0x11\004\00clang version 3.7.0 (trunk 227472) (llvm/trunk 227476)\000\00\000\00\002", !1, !2, !2, !3, !2, !2} ; [ DW_TAG_compile_unit ] [/tmp/dbginfo/line.cpp] [DW_LANG_C_plus_plus]
45 !1 = !{!"line.cpp", !"/tmp/dbginfo"}
46 !2 = !{}
47 !3 = !{!4}
48 !4 = !{!"0x2e\00f\00f\00\001\000\001\000\000\00256\000\001", !1, !5, !6, null, i32 (i32, i32)* @_Z1fii, null, null, !2} ; [ DW_TAG_subprogram ] [line 1] [def] [f]
49 !5 = !{!"0x29", !1}                               ; [ DW_TAG_file_type ] [/tmp/dbginfo/line.cpp]
50 !6 = !{!"0x15\00\000\000\000\000\000\000", null, null, null, !2, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
51 !7 = !{i32 2, !"Dwarf Version", i32 4}
52 !8 = !{i32 2, !"Debug Info Version", i32 2}
53 !9 = !{!"clang version 3.7.0 (trunk 227472) (llvm/trunk 227476)"}
54 !10 = !MDLocation(line: 2, scope: !4)
55 !11 = !MDLocation(line: 3, scope: !4)
56 !12 = !MDLocation(line: 4, scope: !4)
57 !13 = !MDLocation(line: 2, scope: !4)