1*cee313d2SEric Christopher
2*cee313d2SEric Christopher;  RUN: opt < %s -partial-inliner -skip-partial-inlining-cost-analysis -S | FileCheck  %s
3*cee313d2SEric Christopher ; RUN: opt < %s -passes=partial-inliner -skip-partial-inlining-cost-analysis -S | FileCheck   %s
4*cee313d2SEric Christopher
5*cee313d2SEric Christopher%"class.base" = type { %"struct.base"* }
6*cee313d2SEric Christopher%"struct.base" = type opaque
7*cee313d2SEric Christopher
8*cee313d2SEric Christopher@g = external local_unnamed_addr global i32, align 4
9*cee313d2SEric Christopher
10*cee313d2SEric Christopher; Function Attrs: nounwind uwtable
11*cee313d2SEric Christopherdefine i32 @callee_sinkable_bitcast(i32 %arg) local_unnamed_addr #0 {
12*cee313d2SEric Christopher; CHECK-LABEL:define{{.*}}@callee_sinkable_bitcast.{{[0-9]}}
13*cee313d2SEric Christopher; CHECK: alloca
14*cee313d2SEric Christopher; CHECK-NEXT: bitcast
15*cee313d2SEric Christopher; CHECK: call void @llvm.lifetime
16*cee313d2SEric Christopherbb:
17*cee313d2SEric Christopher  %tmp = alloca  %"class.base", align 4
18*cee313d2SEric Christopher  %tmp1 = bitcast %"class.base"* %tmp to i8*
19*cee313d2SEric Christopher  %tmp2 = load i32, i32* @g, align 4, !tbaa !2
20*cee313d2SEric Christopher  %tmp3 = add nsw i32 %tmp2, 1
21*cee313d2SEric Christopher  %tmp4 = icmp slt i32 %arg, 0
22*cee313d2SEric Christopher  br i1 %tmp4, label %bb6, label %bb5
23*cee313d2SEric Christopher
24*cee313d2SEric Christopherbb5:                                              ; preds = %bb
25*cee313d2SEric Christopher  call void @llvm.lifetime.start.p0i8(i64 4, i8* nonnull %tmp1) #2
26*cee313d2SEric Christopher  %tmp11 = bitcast %"class.base"* %tmp to i32*
27*cee313d2SEric Christopher  store i32 %tmp3, i32* %tmp11, align 4, !tbaa !2
28*cee313d2SEric Christopher  store i32 %tmp3, i32* @g, align 4, !tbaa !2
29*cee313d2SEric Christopher  call void @bar(i32* nonnull %tmp11) #2
30*cee313d2SEric Christopher  call void @llvm.lifetime.end.p0i8(i64 4, i8* nonnull %tmp1) #2
31*cee313d2SEric Christopher  br label %bb6
32*cee313d2SEric Christopher
33*cee313d2SEric Christopherbb6:                                              ; preds = %bb5, %bb
34*cee313d2SEric Christopher  %tmp7 = phi i32 [ 1, %bb5 ], [ 0, %bb ]
35*cee313d2SEric Christopher  ret i32 %tmp7
36*cee313d2SEric Christopher}
37*cee313d2SEric Christopher
38*cee313d2SEric Christopherdeclare void @llvm.lifetime.start.p0i8(i64, i8* nocapture) #1
39*cee313d2SEric Christopher
40*cee313d2SEric Christopherdeclare void @bar(i32*) local_unnamed_addr #2
41*cee313d2SEric Christopherdeclare void @bar2(i32*, i32*) local_unnamed_addr #1
42*cee313d2SEric Christopher
43*cee313d2SEric Christopher
44*cee313d2SEric Christopher; Function Attrs: argmemonly nounwind
45*cee313d2SEric Christopherdeclare void @llvm.lifetime.end.p0i8(i64, i8* nocapture) #1
46*cee313d2SEric Christopher
47*cee313d2SEric Christopher; Function Attrs: nounwind uwtable
48*cee313d2SEric Christopherdefine i32 @caller(i32 %arg) local_unnamed_addr #0 {
49*cee313d2SEric Christopherbb:
50*cee313d2SEric Christopher  %tmp = tail call i32 @callee_sinkable_bitcast(i32 %arg)
51*cee313d2SEric Christopher  ret i32 %tmp
52*cee313d2SEric Christopher}
53*cee313d2SEric Christopher
54*cee313d2SEric Christopherattributes #0 = { nounwind uwtable}
55*cee313d2SEric Christopherattributes #1 = { argmemonly nounwind }
56*cee313d2SEric Christopherattributes #2 = { nounwind }
57*cee313d2SEric Christopher
58*cee313d2SEric Christopher!llvm.module.flags = !{!0}
59*cee313d2SEric Christopher!llvm.ident = !{!1}
60*cee313d2SEric Christopher
61*cee313d2SEric Christopher!0 = !{i32 1, !"wchar_size", i32 4}
62*cee313d2SEric Christopher!1 = !{!"clang version 5.0.0 (trunk 303574)"}
63*cee313d2SEric Christopher!2 = !{!3, !3, i64 0}
64*cee313d2SEric Christopher!3 = !{!"int", !4, i64 0}
65*cee313d2SEric Christopher!4 = !{!"omnipotent char", !5, i64 0}
66*cee313d2SEric Christopher!5 = !{!"Simple C/C++ TBAA"}
67*cee313d2SEric Christopher
68*cee313d2SEric Christopher
69