summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/pr31242.ll
blob: 273ae76056c24cc412c5f96792006d7bbdd84915 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
; RUN: llc -mtriple=x86_64-unknown-linux-gnu < %s | FileCheck %s

declare void @raf(i32, ...)

; CHECK-LABEL: test3
; CHECK-DAG:   movl    $7, %edi
; CHECK-DAG:   xorl    %esi, %esi
; CHECK-DAG:   xorl    %edx, %edx
; CHECK-DAG:   xorl    %ecx, %ecx
; CHECK-DAG:   xorl    %r8d, %r8d
; CHECK-DAG:   xorl    %r9d, %r9d
; CHECK-DAG:   xorl    %eax, %eax
; CHECK:       pushq   %rbx
; CHECK:       pushq   $0
; CHECK:       callq   raf


; Function Attrs: nounwind uwtable
define void @test3() {
entry:
  br label %for.body

for.body:
  %i.04 = phi i32 [ 0, %entry ], [ %inc, %for.body ]
  tail call void @llvm.dbg.value(metadata i32 %i.04, i64 0, metadata !10, metadata !12), !dbg !6
  tail call void (i32, ...) @raf(i32 7, i32 0, i32 0, i32 0, i32 0, i32 0, i32 0, i32 %i.04)
  %inc = add nuw nsw i32 %i.04, 1
  %exitcond = icmp eq i32 %inc, 21
  br i1 %exitcond, label %for.cond.cleanup, label %for.body

for.cond.cleanup:
  ret void  
}

; Function Attrs: nounwind readnone
declare void @llvm.dbg.value(metadata, i64, metadata, metadata) 
attributes #3 = { nounwind }

!llvm.dbg.cu = !{!0}
!llvm.module.flags = !{!3, !4}
!llvm.ident = !{!5}

!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 4.0.0 (trunk 288844)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
!1 = !DIFile(filename: "pr31242.c", directory: "")
!2 = !{}
!3 = !{i32 2, !"Dwarf Version", i32 4}
!4 = !{i32 2, !"Debug Info Version", i32 3}
!5 = !{!"clang version 4.0.0 (trunk 288844)"}
!6 = !DILocation(line: 2, column: 16, scope: !7)
!7 = distinct !DISubprogram(name: "test3", scope: !1, file: !1, line: 5, type: !8, isLocal: false, isDefinition: true, scopeLine: 5, isOptimized: true, unit: !0)
!8 = !DISubroutineType(types: !9)
!9 = !{null}
!10 = !DILocalVariable(name: "value", arg: 1, scope: !7, file: !1, line: 2, type: !11)
!11 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
!12 = !DIExpression()