1*cee313d2SEric Christopher; RUN: opt < %s -partial-inliner -S | FileCheck %s
2*cee313d2SEric Christopher; RUN: opt < %s -passes=partial-inliner -S | FileCheck %s
3*cee313d2SEric Christopher; RUN: opt < %s -partial-inliner -max-num-inline-blocks=3 -S | FileCheck --check-prefix=LIMIT %s
4*cee313d2SEric Christopher; RUN: opt < %s -passes=partial-inliner -max-num-inline-blocks=3 -S | FileCheck  --check-prefix=LIMIT %s
5*cee313d2SEric Christopher
6*cee313d2SEric Christopher; Function Attrs: nounwind uwtable
7*cee313d2SEric Christopherdefine i32 @bar(i32 %arg) local_unnamed_addr #0 {
8*cee313d2SEric Christopherbb:
9*cee313d2SEric Christopher  %tmp = icmp slt i32 %arg, 0
10*cee313d2SEric Christopher  br i1 %tmp, label %bb1, label %bb4
11*cee313d2SEric Christopher
12*cee313d2SEric Christopherbb1:                                              ; preds = %bb
13*cee313d2SEric Christopher  %tmp2 = tail call i32 (...) @n() #2
14*cee313d2SEric Christopher  %tmp3 = icmp slt i32 %tmp2, %arg
15*cee313d2SEric Christopher  br i1 %tmp3, label %bb7, label %bb4
16*cee313d2SEric Christopher
17*cee313d2SEric Christopherbb4:                                              ; preds = %bb1, %bb
18*cee313d2SEric Christopher  %tmp5 = tail call i32 (...) @m() #2
19*cee313d2SEric Christopher  %tmp6 = icmp slt i32 %tmp5, %arg
20*cee313d2SEric Christopher  br i1 %tmp6, label %bb7, label %bb8
21*cee313d2SEric Christopher
22*cee313d2SEric Christopherbb7:                                              ; preds = %bb4, %bb1
23*cee313d2SEric Christopher  tail call void (...) @foo() #2
24*cee313d2SEric Christopher  tail call void (...) @foo() #2
25*cee313d2SEric Christopher  tail call void (...) @foo() #2
26*cee313d2SEric Christopher  tail call void (...) @foo() #2
27*cee313d2SEric Christopher  tail call void (...) @foo() #2
28*cee313d2SEric Christopher  tail call void (...) @foo() #2
29*cee313d2SEric Christopher  tail call void (...) @foo() #2
30*cee313d2SEric Christopher  tail call void (...) @foo() #2
31*cee313d2SEric Christopher  tail call void (...) @foo() #2
32*cee313d2SEric Christopher  br label %bb8
33*cee313d2SEric Christopher
34*cee313d2SEric Christopherbb8:                                              ; preds = %bb7, %bb4
35*cee313d2SEric Christopher  %tmp9 = phi i32 [ 0, %bb7 ], [ 1, %bb4 ]
36*cee313d2SEric Christopher  ret i32 %tmp9
37*cee313d2SEric Christopher}
38*cee313d2SEric Christopher
39*cee313d2SEric Christopherdeclare i32 @n(...) local_unnamed_addr #1
40*cee313d2SEric Christopher
41*cee313d2SEric Christopherdeclare i32 @m(...) local_unnamed_addr #1
42*cee313d2SEric Christopher
43*cee313d2SEric Christopherdeclare void @foo(...) local_unnamed_addr #1
44*cee313d2SEric Christopher
45*cee313d2SEric Christopher; Function Attrs: nounwind uwtable
46*cee313d2SEric Christopherdefine i32 @dummy_caller(i32 %arg) local_unnamed_addr #0 {
47*cee313d2SEric Christopherbb:
48*cee313d2SEric Christopher; CHECK-LABEL: @dummy_caller
49*cee313d2SEric Christopher; CHECK: br i1
50*cee313d2SEric Christopher; CHECK: br i1
51*cee313d2SEric Christopher; CHECK: br i1
52*cee313d2SEric Christopher; CHECK: call void @bar.1.
53*cee313d2SEric Christopher; LIMIT-LABEL: @dummy_caller
54*cee313d2SEric Christopher; LIMIT-NOT: br i1
55*cee313d2SEric Christopher; LIMIT: call i32 @bar
56*cee313d2SEric Christopher  %tmp = tail call i32 @bar(i32 %arg)
57*cee313d2SEric Christopher  ret i32 %tmp
58*cee313d2SEric Christopher}
59*cee313d2SEric Christopher
60*cee313d2SEric Christopherattributes #0 = { nounwind }
61*cee313d2SEric Christopherattributes #1 = { nounwind }
62*cee313d2SEric Christopherattributes #2 = { nounwind }
63*cee313d2SEric Christopher
64