[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / Transforms / FunctionSpecialization / function-specialization-minsize3.ll
blob743ca89e96cc752fd3d25d90c51160fa20c233ae
1 ; RUN: opt -passes="ipsccp<func-spec>" -funcspec-min-function-size=3 -S < %s | FileCheck %s
3 ; Checks for callsites that have been annotated with MinSize. We only expect
4 ; specialisation for the call that does not have the attribute:
6 ; CHECK: plus:
7 ; CHECK:   %tmp0 = call i64 @compute.specialized.1(i64 %x, ptr @plus)
8 ; CHECK:   br label %merge
9 ; CHECK: minus:
10 ; CHECK:   %tmp1 = call i64 @compute(i64 %x, ptr @minus) #0
11 ; CHECK:   br label %merge
13 define i64 @main(i64 %x, i1 %flag) {
14 entry:
15   br i1 %flag, label %plus, label %minus
17 plus:
18   %tmp0 = call i64 @compute(i64 %x, ptr @plus)
19   br label %merge
21 minus:
22   %tmp1 = call i64 @compute(i64 %x, ptr @minus) #0
23   br label %merge
25 merge:
26   %tmp2 = phi i64 [ %tmp0, %plus ], [ %tmp1, %minus]
27   ret i64 %tmp2
30 define internal i64 @compute(i64 %x, ptr %binop) {
31 entry:
32   %tmp0 = call i64 %binop(i64 %x)
33   ret i64 %tmp0
36 define internal i64 @plus(i64 %x) {
37 entry:
38   %tmp0 = add i64 %x, 1
39   ret i64 %tmp0
42 define internal i64 @minus(i64 %x) {
43 entry:
44   %tmp0 = sub i64 %x, 1
45   ret i64 %tmp0
48 attributes #0 = { minsize optsize }