[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Transforms / ArgumentPromotion / dbg.ll
blob668276290b6836c6ca6974c41275d6a78ea4b80c
1 ; RUN: opt < %s -argpromotion -S | FileCheck %s
2 ; RUN: opt < %s -passes=argpromotion -S | FileCheck %s
4 declare void @sink(i32)
6 ; CHECK: define internal void @test({{.*}} !dbg [[SP:![0-9]+]]
7 define internal void @test(i32** %X) !dbg !2 {
8   %1 = load i32*, i32** %X, align 8
9   %2 = load i32, i32* %1, align 8
10   call void @sink(i32 %2)
11   ret void
14 %struct.pair = type { i32, i32 }
16 ; CHECK: define internal void @test_byval(i32 %{{.*}}, i32 %{{.*}})
17 define internal void @test_byval(%struct.pair* byval %P) {
18   ret void
21 ; CHECK-LABEL: define {{.*}} @caller(
22 define void @caller(i32** %Y, %struct.pair* %P) {
23 ; CHECK:  load i32*, {{.*}} !dbg [[LOC_1:![0-9]+]]
24 ; CHECK-NEXT:  load i32, {{.*}} !dbg [[LOC_1]]
25 ; CHECK-NEXT: call void @test(i32 %{{.*}}), !dbg [[LOC_1]]
26   call void @test(i32** %Y), !dbg !1
28 ; CHECK: getelementptr %struct.pair, {{.*}} !dbg [[LOC_2:![0-9]+]]
29 ; CHECK-NEXT: load i32, i32* {{.*}} !dbg [[LOC_2]]
30 ; CHECK-NEXT: getelementptr %struct.pair, {{.*}} !dbg [[LOC_2]]
31 ; CHECK-NEXT: load i32, i32* {{.*}} !dbg [[LOC_2]]
32 ; CHECK-NEXT: call void @test_byval(i32 %{{.*}}, i32 %{{.*}}), !dbg [[LOC_2]]
33   call void @test_byval(%struct.pair* %P), !dbg !6
34   ret void
37 ; CHECK: [[SP]] = distinct !DISubprogram(name: "test",
38 ; CHECK: [[LOC_1]] = !DILocation(line: 8
39 ; CHECK: [[LOC_2]] = !DILocation(line: 9
41 !llvm.module.flags = !{!0}
42 !llvm.dbg.cu = !{!3}
44 !0 = !{i32 2, !"Debug Info Version", i32 3}
45 !1 = !DILocation(line: 8, scope: !2)
46 !2 = distinct !DISubprogram(name: "test", file: !5, line: 3, isLocal: true, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, unit: !3, scopeLine: 3, scope: null)
47 !3 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.5.0 ", isOptimized: false, emissionKind: LineTablesOnly, file: !5)
48 !5 = !DIFile(filename: "test.c", directory: "")
49 !6 = !DILocation(line: 9, scope: !2)