[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / Inline / partial-inline-incompat-attrs.ll
blob25e4c588d0883245d02a09309e80b5f66a6906d6
1 ; RUN: opt < %s -passes=partial-inliner -S 2>&1| FileCheck %s
3 define i32 @callee1(i32 %arg) {
4 bb:
5   %tmp = icmp slt i32 %arg, 0
6   br i1 %tmp, label %bb1, label %bb2
8 bb1:
9   br i1 undef, label %bb4, label %bb2
11 bb2:
12   br i1 undef, label %bb4, label %bb5
14 bb4:
15   %xx1 = phi i32 [ 1, %bb1 ], [ 9, %bb2 ]
16   %xx2 = phi i32 [ 1, %bb1 ], [ 9, %bb2 ]
17   %xx3 = phi i32 [ 1, %bb1 ], [ 9, %bb2 ]
18   tail call void (...) @extern() #2
19   br label %bb5
21 bb5:
22   %tmp6 = phi i32 [ 1, %bb2 ], [ 9, %bb4 ]
23   ret i32 %tmp6
26 declare void @extern(...)
28 define i32 @caller1(i32 %arg) {
29 bb:
30 ;; partial inliner inlines callee to caller.
31 ; CHECK-LABEL: @caller1
32 ; CHECK: br i1
33 ; CHECK: br i1
34 ; CHECK-NOT: call i32 @callee1(
35   %tmp = tail call i32 @callee1(i32 %arg)
36   ret i32 %tmp
39 define i32 @caller2(i32 %arg) #0 {
40 bb:
41 ;; partial inliner won't inline callee to caller because they have
42 ;; incompatible attributes.
43 ; CHECK-LABEL: @caller2
44 ; CHECK: call i32 @callee1(
45   %tmp = tail call i32 @callee1(i32 %arg)
46   ret i32 %tmp
49 attributes #0 = { "use-sample-profile" }